From 0338dc23fd758ef1f03ae4918edf43099db3dda9 Mon Sep 17 00:00:00 2001 From: autonomic-bot Date: Fri, 5 Jun 2026 01:18:20 +0000 Subject: [PATCH] chore(nix): move weekly upgrade timer to Thursdays 22:00 UTC (was Sun 02:00) Co-Authored-By: Claude Opus 4.8 --- nix/hosts/cc-ci-orchestrator-hetzner/configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/hosts/cc-ci-orchestrator-hetzner/configuration.nix b/nix/hosts/cc-ci-orchestrator-hetzner/configuration.nix index 7036192..0e007c4 100644 --- a/nix/hosts/cc-ci-orchestrator-hetzner/configuration.nix +++ b/nix/hosts/cc-ci-orchestrator-hetzner/configuration.nix @@ -212,10 +212,10 @@ SSHCFG }; systemd.timers.cc-ci-upgrade-all = { - description = "Weekly trigger for cc-ci-upgrade-all (Sundays 02:00 UTC)"; + description = "Weekly trigger for cc-ci-upgrade-all (Thursdays 22:00 UTC)"; wantedBy = [ "timers.target" ]; timerConfig = { - OnCalendar = "Sun *-*-* 02:00:00 UTC"; + OnCalendar = "Thu *-*-* 22:00:00 UTC"; Persistent = true; # if the box was down at the scheduled time, run once on next boot }; };