From 28b1c4a36396efc73897163c4008818ac80f70f8 Mon Sep 17 00:00:00 2001 From: chaos Date: Thu, 18 Jul 2024 18:30:50 +0100 Subject: [PATCH] change backup schedules --- data/backupSchedules.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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"; }; };