From 144391d3324acb54839ce9f5147a86e5b4886b9e Mon Sep 17 00:00:00 2001 From: Yan Lin Date: Sun, 7 Sep 2025 18:18:18 +0200 Subject: [PATCH] Add borg backup paths --- hosts/nixos/hs/system.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/hosts/nixos/hs/system.nix b/hosts/nixos/hs/system.nix index 797c4ee..c0dcdf1 100644 --- a/hosts/nixos/hs/system.nix +++ b/hosts/nixos/hs/system.nix @@ -225,7 +225,13 @@ enable = true; # Use SSH alias from SSH config for remote backup repositoryUrl = "ssh://storage-box/./hs"; - backupPaths = [ "/home" "/var/lib/containers" ]; + backupPaths = [ + "/home" + "/var/lib/containers" + "/mnt/storage/appbulk/immich/library/" + "/mnt/storage/appbulk/Paperless/media/documents" + "/mnt/storage/Media/DCIM" + ]; # Examples: # backupFrequency = "daily"; # Midnight (default) # backupFrequency = "*-*-* 03:00:00"; # Every day at 3:00 AM