From f4b1befbdd392c36d0fad5ac76c353a53729c4f8 Mon Sep 17 00:00:00 2001 From: autonomic-bot Date: Fri, 5 Jun 2026 01:21:41 +0000 Subject: [PATCH] chore(nix): weekly timer = Thu 22:00 America/New_York (Boston 10pm, DST-aware) Co-Authored-By: Claude Opus 4.8 --- nix/hosts/cc-ci-orchestrator-hetzner/configuration.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nix/hosts/cc-ci-orchestrator-hetzner/configuration.nix b/nix/hosts/cc-ci-orchestrator-hetzner/configuration.nix index 0e007c4..fd14b5e 100644 --- a/nix/hosts/cc-ci-orchestrator-hetzner/configuration.nix +++ b/nix/hosts/cc-ci-orchestrator-hetzner/configuration.nix @@ -212,10 +212,11 @@ SSHCFG }; systemd.timers.cc-ci-upgrade-all = { - description = "Weekly trigger for cc-ci-upgrade-all (Thursdays 22:00 UTC)"; + description = "Weekly trigger for cc-ci-upgrade-all (Thursdays 22:00 America/New_York — Boston 10pm)"; wantedBy = [ "timers.target" ]; timerConfig = { - OnCalendar = "Thu *-*-* 22:00:00 UTC"; + # 10pm Thursday Boston time — DST-aware (EDT→02:00 UTC, EST→03:00 UTC) via the tz in OnCalendar. + OnCalendar = "Thu *-*-* 22:00:00 America/New_York"; Persistent = true; # if the box was down at the scheduled time, run once on next boot }; };