Commit 5d9a3e4cdae8

Vincent Demeester <vincent@sbr.pm>
2026-02-11 11:16:02
fix(kyushu): delayed slack-archive timer to 9 AM
Service failed after reboots when triggered during early boot due to terminal detection issues with browser-based authentication.
1 parent fad470f
Changed files (1)
systems
systems/kyushu/extra.nix
@@ -142,8 +142,8 @@
     wantedBy = [ "timers.target" ];
 
     timerConfig = {
-      OnCalendar = "daily";
-      RandomizedDelaySec = 3600; # 0-1 hour random delay
+      OnCalendar = "09:00"; # Run at 9 AM daily (system should be fully up by then)
+      RandomizedDelaySec = 1800; # 0-30 min random delay
       Persistent = true;
     };
   };