configurations for my servers and desktops
nix nixos flake dots dotfiles

feat: `--keep-last` in restic pruneopts

in case the computer's time was set very far in the future on accident
or something, it'll atleast keep the last few backups

+2 -2
+2 -2
modules/nixos/services/restic.nix
··· 38 38 "/var/lib/transmission" 39 39 ]; 40 40 extraBackupArgs = ["--skip-if-unchanged" "--no-scan" "--one-file-system" "--exclude-caches" "--tag scheduled"]; 41 - pruneOpts = ["--keep-hourly 24" "--keep-daily 14" "--keep-weekly 4" "--keep-monthly 6"]; 41 + pruneOpts = ["--keep-last 4" "--keep-hourly 24" "--keep-daily 14" "--keep-weekly 4" "--keep-monthly 6"]; 42 42 }; 43 43 "bluepill-offsite" = { 44 44 repository = "rclone:onedrive:/backup/restic"; ··· 60 60 "/var/lib/transmission" 61 61 ]; 62 62 extraBackupArgs = ["--skip-if-unchanged" "--no-scan" "--one-file-system" "--exclude-caches" "--tag scheduled"]; 63 - pruneOpts = ["--keep-hourly 24" "--keep-daily 14" "--keep-weekly 4" "--keep-monthly 6"]; 63 + pruneOpts = ["--keep-last 4" "--keep-hourly 24" "--keep-daily 14" "--keep-weekly 4" "--keep-monthly 6"]; 64 64 }; 65 65 }; 66 66 };