From f7f390620fecc62f4670729a773f5417556b1645 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Sun, 2 Jun 2024 22:05:10 +0200 Subject: [PATCH] Fix wrong value in timer --- backup.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/backup.nix b/backup.nix index 72b4087..70a9536 100644 --- a/backup.nix +++ b/backup.nix @@ -60,12 +60,10 @@ in }; systemd.timers."backup-helper@" = { enable = false; - environment = { - timerConfig = { - OnCalendar = cfg.schedule; - Persistent = true; - RandomizedDelaySec = cfg.randomized-delay; - }; + timerConfig = { + OnCalendar = cfg.schedule; + Persistent = true; + RandomizedDelaySec = cfg.randomized-delay; }; }; };