From 0097bd40f483bcd8fb34fea9e70c79aec8474dc6 Mon Sep 17 00:00:00 2001 From: cy Date: Mon, 30 Dec 2024 23:30:31 -0500 Subject: [PATCH] backup: exclude podman stuff by default --- hosts/chunk/backup.nix | 4 ---- hosts/titan/backup.nix | 4 ---- modules/backup.nix | 1 + 3 files changed, 1 insertion(+), 8 deletions(-) diff --git a/hosts/chunk/backup.nix b/hosts/chunk/backup.nix index 287a282..baf541e 100644 --- a/hosts/chunk/backup.nix +++ b/hosts/chunk/backup.nix @@ -9,10 +9,6 @@ paths = [ "/vw-data" ]; - exclude = [ - # podman stuff - "/var/lib/containers" - ]; repo = "crash"; passFile = config.sops.secrets."borg/rsyncnet".path; sshKeyFile = config.sops.secrets."rsyncnet/id_ed25519".path; diff --git a/hosts/titan/backup.nix b/hosts/titan/backup.nix index 2ad6665..ad09978 100644 --- a/hosts/titan/backup.nix +++ b/hosts/titan/backup.nix @@ -6,10 +6,6 @@ my.backup = { enable = true; jobName = "titanRsync"; - exclude = [ - # podman stuff - "/var/lib/containers" - ]; repo = "titan"; passFile = config.sops.secrets."borg/rsyncnet".path; sshKeyFile = config.sops.secrets."rsyncnet/id_ed25519".path; diff --git a/modules/backup.nix b/modules/backup.nix index 64ce621..90f2f2d 100644 --- a/modules/backup.nix +++ b/modules/backup.nix @@ -22,6 +22,7 @@ let "**/cache" "**/Cache" "/var/lib/docker" + "/var/lib/containers" # podman "/var/lib/systemd" "/var/lib/libvirt" "**/.rustup"