From d64c23ce975d341c07f80c39398a349ebb798956 Mon Sep 17 00:00:00 2001 From: Cilly Leang Date: Fri, 19 Jun 2026 10:20:00 +1000 Subject: [PATCH] alyssum/restic: backup less frequently --- hosts/alyssum/restic.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/hosts/alyssum/restic.nix b/hosts/alyssum/restic.nix index cfbea11..b355589 100644 --- a/hosts/alyssum/restic.nix +++ b/hosts/alyssum/restic.nix @@ -14,13 +14,12 @@ paths = ["/flower"]; timerConfig = { - # every 30mns - OnCalendar = "*-*-* *:00,30:00"; + # every 6 hours + OnCalendar = "*-*-* 00,06,12,18:00:00"; Persistent = true; }; pruneOpts = [ - "--keep-last 24" - "--keep-hourly 24" + "--keep-last 8" "--keep-daily 7" "--keep-weekly 5" "--keep-monthly 12"