nix-configs

Personal NixOS and home-manager configuration files
Log | Files | Refs

commit b842e9cf20c27e0fd961fae99c826de826cbfb80
parent 486feb43ed5ab364a5f5ab5f7b458d14333f6ea6
Author: breadcat <breadcat@users.noreply.github.com>
Date:   Tue,  5 Aug 2025 15:05:37 +0100

Randomise timer starts a little

Diffstat:
Mcommon/restic.nix | 2+-
Mcommon/tank-log.nix | 1+
Mcommon/tank-sort.nix | 1+
3 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/common/restic.nix b/common/restic.nix @@ -24,6 +24,7 @@ in { wantedBy = [ "timers.target" ]; timerConfig = { OnCalendar = "0/12:00:00"; + RandomizedDelaySec = "30min"; Persistent = true; }; }; @@ -35,7 +36,6 @@ in { serviceConfig = { Type = "oneshot"; User = "${username}"; - # ExecStart = "${backup-cloud}/bin/backup-cloud"; }; }; diff --git a/common/tank-log.nix b/common/tank-log.nix @@ -50,6 +50,7 @@ in { wantedBy = [ "timers.target" ]; timerConfig = { OnCalendar = [ "0/12:20:00" ]; + RandomizedDelaySec = "10min"; Persistent = true; }; }; diff --git a/common/tank-sort.nix b/common/tank-sort.nix @@ -25,6 +25,7 @@ in { wantedBy = [ "timers.target" ]; timerConfig = { OnCalendar = "0/12:00:00"; + RandomizedDelaySec = "5min"; Persistent = true; }; };