nix-configs

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

commit 0546b1e23ef277d702fe24d3ea04331586160b7f
parent 224717feadf6de47094d2726bbc16bea5906f5a5
Author: breadcat <breadcat@users.noreply.github.com>
Date:   Sat,  2 Aug 2025 10:47:59 +0100

God I hate systemd timers

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

diff --git a/common/restic.nix b/common/restic.nix @@ -23,7 +23,7 @@ in { description = "Timer to run Restic backup"; wantedBy = [ "timers.target" ]; timerConfig = { - OnActiveSec = "12h"; + OnCalendar = "0/12:00:00"; Persistent = true; }; }; diff --git a/common/tank-log.nix b/common/tank-log.nix @@ -49,7 +49,7 @@ in { systemd.timers.tank-log = { wantedBy = [ "timers.target" ]; timerConfig = { - OnUnitActiveSec = "12h"; + OnCalendar = [ "0/12:20:00" ]; Persistent = true; }; }; diff --git a/common/tank-sort.nix b/common/tank-sort.nix @@ -24,7 +24,7 @@ in { systemd.timers.tank-sort = { wantedBy = [ "timers.target" ]; timerConfig = { - OnUnitActiveSec = "12h"; + OnCalendar = "0/12:00:00"; Persistent = true; }; };