From 3f3dc2d037346b994c61bfc8c5640b8acdfedf10 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Wed, 23 Jul 2025 13:40:33 +0200 Subject: [PATCH] Disable automatic August shutdown for Fox MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The UPC has different dates for the yearly power cut, and Fox can recover properly from a power loss, so we don't need to have it turned off before the power cut. Simply disabling the timer is enough. Reviewed-by: Aleix Roca Nonell Reviewed-by: Aleix Boné --- m/fox/configuration.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/m/fox/configuration.nix b/m/fox/configuration.nix index fd5cdc8..436a85e 100644 --- a/m/fox/configuration.nix +++ b/m/fox/configuration.nix @@ -8,6 +8,10 @@ ../module/nvidia.nix ]; + # Don't turn off on August as UPC has different dates. + # Fox works fine on power cuts. + systemd.timers.august-shutdown.enable = false; + # Select the this using the ID to avoid mismatches boot.loader.grub.device = "/dev/disk/by-id/wwn-0x500a07514b0c1103";