diff options
Diffstat (limited to '')
-rw-r--r-- | hosts/tahoe/services.nix | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/hosts/tahoe/services.nix b/hosts/tahoe/services.nix index ec9c2de..ff476c5 100644 --- a/hosts/tahoe/services.nix +++ b/hosts/tahoe/services.nix @@ -51,8 +51,16 @@ in timerConfig = { OnCalendar = "00:15"; }; passwordFile = secrets."restic/repo-systems".path; paths = - [ "/home" "/data/fast/music" "/data/fast/photos" "/data/fast/videos" ]; - exclude = [ "/home/fcuny/import" "/home/fcuny/media/videos" ]; + [ + "/data/fast/music" + "/data/fast/photos" + "/home" + ]; + exclude = [ + "/home/fcuny/.cache" + "/home/fcuny/import" + "/home/fcuny/media/videos" + ]; }; }; } |