From aabbff3ad4b38a8f4905e803302594ac68226cc9 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Thu, 5 Jun 2025 16:54:35 +0100 Subject: [PATCH] chore(backup): add exclusion for `/var/lib/ollama` in backup configuration --- hosts/architect/backup.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/architect/backup.nix b/hosts/architect/backup.nix index 2a1c206..5ed0fa3 100644 --- a/hosts/architect/backup.nix +++ b/hosts/architect/backup.nix @@ -17,6 +17,9 @@ environmentFile = config.age.secrets.restic-environment.path; repository = "b2:architect:/"; paths = [ "/var/lib" "/services" ]; + exclude = [ + "/var/lib/ollama" + ]; pruneOpts = [ "--keep-daily 45" "--keep-weekly 12"