From ed17966d6f40e39fde549a72afed6aa51c34344a Mon Sep 17 00:00:00 2001 From: RGBCube Date: Thu, 17 Oct 2024 12:35:57 +0300 Subject: [PATCH] Fix backup persist settings --- modules/restic/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/modules/restic/default.nix b/modules/restic/default.nix index 8a30f98..b84cb9d 100644 --- a/modules/restic/default.nix +++ b/modules/restic/default.nix @@ -12,10 +12,9 @@ serverSystemConfiguration { initialize = true; pruneOpts = [ - "--keep-daily unlimited" - "--keep-weekly unlimited" - "--keep-monthly 6" - "--keep-yearly 12" + "--keep-daily 7" + "--keep-weekly 4" + "--keep-monthly 12" ]; }); };