From 5bbf20aabde6305a72c8bd95f80cb739aef61b38 Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Wed, 25 Mar 2026 18:44:37 -0500 Subject: [PATCH] prune --- resticprofile/base.nix | 50 ------------------------------------------ 1 file changed, 50 deletions(-) delete mode 100644 resticprofile/base.nix diff --git a/resticprofile/base.nix b/resticprofile/base.nix deleted file mode 100644 index d8c577f..0000000 --- a/resticprofile/base.nix +++ /dev/null @@ -1,50 +0,0 @@ -{ - base = { - repository = "local:/mnt/backup"; - password-file = "{{ .ConfigDir }}/password.txt"; - status-file = "{{ .ConfigDir }}/backup-status.json"; - retention = { - after-backup = true; - keep-last = "10"; - keep-hourly = "8"; - keep-daily = "14"; - keep-weekly = "8"; - }; - backup = { - verbose = true; - exclude = [ - ".cache" - ".devenv" - ".rustup" - ".cargo" - ".venv" - ".pyenv" - ".vscode*" - "data/postgres" - "build" - "__pycache__" - "*.log" - "*.egg-info" - "*.csv" - "*.m4a" - - ".local/share/Steam" - ".local/share/Trash" - "build" - "dist" - "/home/*/Pictures" - "/home/*/Videos" - "/home/*/go" - "/home/*/snap" - "/home/john/john-nas" - ]; - schedule-permission = "user"; - schedule-priority = "background"; - check-after = true; - }; - prune = { - schedule-permission = "user"; - schedule-lock-wait = "1h"; - }; - }; -}