From 9e235abf4819ba3e7fbc4ad4f9690c9d0375e91a Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Thu, 2 Apr 2026 22:49:07 -0400 Subject: [PATCH] monitoring: fix disk-usage-collector timer calendar spec --- services/monitoring.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/monitoring.nix b/services/monitoring.nix index c274257..1596596 100644 --- a/services/monitoring.nix +++ b/services/monitoring.nix @@ -987,7 +987,7 @@ in systemd.timers.disk-usage-collector = { wantedBy = [ "timers.target" ]; timerConfig = { - OnCalendar = "*:*:0/60"; # every 60 seconds + OnCalendar = "minutely"; RandomizedDelaySec = "10s"; }; };