From d971ab334ea9a2de48d3ce3a53cb728e538ca767 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Fri, 6 Dec 2024 22:59:34 +0000 Subject: [PATCH] fix(backup.nix): remove `/secrets` from backup paths --- hosts/architect/backup.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/architect/backup.nix b/hosts/architect/backup.nix index 6cdb467..2a1c206 100644 --- a/hosts/architect/backup.nix +++ b/hosts/architect/backup.nix @@ -16,7 +16,7 @@ passwordFile = config.age.secrets.restic-passwords.path; environmentFile = config.age.secrets.restic-environment.path; repository = "b2:architect:/"; - paths = [ "/var/lib" "/secrets" "/services" ]; + paths = [ "/var/lib" "/services" ]; pruneOpts = [ "--keep-daily 45" "--keep-weekly 12"