From 12892449955ce8093520a7d1ea24e7fd05c43081 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Mon, 29 Sep 2025 21:52:07 +0200 Subject: [PATCH] restic: Adjust prune thresholds --- modules/system/services/restic-backups/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/system/services/restic-backups/default.nix b/modules/system/services/restic-backups/default.nix index c5dc846..5ec3733 100644 --- a/modules/system/services/restic-backups/default.nix +++ b/modules/system/services/restic-backups/default.nix @@ -58,9 +58,8 @@ in passwordFile = config.sops.secrets."restic/password".path; pruneOpts = [ "--keep-daily 7" - "--keep-weekly 5" + "--keep-weekly 4" "--keep-monthly 6" - "--keep-yearly 1" ]; timerConfig = { OnCalendar = "03:00";