diff --git a/data/backupSchedules.nix b/data/backupSchedules.nix index e5965d1..2800153 100644 --- a/data/backupSchedules.nix +++ b/data/backupSchedules.nix @@ -1,18 +1,18 @@ rec { restic = let - OnStartupSec = "5m"; + OnStartupSec = "1h"; in { low = { inherit OnStartupSec; - OnUnitActiveSec = "12h"; + OnUnitActiveSec = "48h"; }; medium = { inherit OnStartupSec; - OnUnitActiveSec = "8h"; + OnUnitActiveSec = "24h"; }; high = { inherit OnStartupSec; - OnUnitActiveSec = "2h"; + OnUnitActiveSec = "12h"; }; };