From 9a056737de61c4ba8eac0585a03745517cb8fecd Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Wed, 23 Jul 2025 13:42:57 +0200 Subject: [PATCH] Move August shutdown to 3rd at 22h MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Aleix Roca Nonell Reviewed-by: Aleix Boné --- m/common/base/august-shutdown.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/m/common/base/august-shutdown.nix b/m/common/base/august-shutdown.nix index 624340c..7f79c84 100644 --- a/m/common/base/august-shutdown.nix +++ b/m/common/base/august-shutdown.nix @@ -1,12 +1,12 @@ { - # Shutdown all machines on August 2nd at 11:00 AM, so we can protect the + # Shutdown all machines on August 3rd at 22:00, so we can protect the # hardware from spurious electrical peaks on the yearly electrical cut for # manteinance that starts on August 4th. systemd.timers.august-shutdown = { - description = "Shutdown on August 2nd for maintenance"; + description = "Shutdown on August 3rd for maintenance"; wantedBy = [ "timers.target" ]; timerConfig = { - OnCalendar = "*-08-02 11:00:00"; + OnCalendar = "*-08-03 22:00:00"; RandomizedDelaySec = "10min"; Unit = "systemd-poweroff.service"; };