From cf6eeb6f2970e9fdca9069b018bea41dbbb5ea5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Wed, 2 Aug 2023 15:41:06 +0300 Subject: [PATCH] deployerbot: start action at 23:30 UTC According to 'nixos infra status' finding a good time of day to run the updates for nixos release non-small is futile. --- modules/services/deployerbot/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/services/deployerbot/default.nix b/modules/services/deployerbot/default.nix index 64b3811..353905e 100644 --- a/modules/services/deployerbot/default.nix +++ b/modules/services/deployerbot/default.nix @@ -35,6 +35,7 @@ systemd.services.deployerbot = { description = "Update all known systems"; + environment = {TZ = "UTC";}; serviceConfig = { Type = "oneshot"; User = "deployerbot-main"; @@ -74,7 +75,7 @@ # 15:38 UTC was the latest merge that I have observed since # making the commit by looking at 3 commits of this repo. # Let's try to be optimistic. - timerConfig.OnCalendar = "*-*-* 16:00:00 UTC"; + timerConfig.OnCalendar = "*-*-* 23:30:00 UTC"; }; mj.base.unitstatus.units = ["deployerbot"];