From 7198988ffd8932370065cd8376e3d408fe40f8c2 Mon Sep 17 00:00:00 2001 From: buffet Date: Sun, 10 Mar 2024 16:31:43 +0100 Subject: [PATCH] fix: exclude .mozilla in backup --- hosts/alice/borg.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hosts/alice/borg.nix b/hosts/alice/borg.nix index ede2d9e..c371a35 100644 --- a/hosts/alice/borg.nix +++ b/hosts/alice/borg.nix @@ -10,7 +10,9 @@ in { services.borgbackup = { jobs.backup = { paths = ["/home"]; - exclude = []; + exclude = [ + "/home/buffet/.mozilla" + ]; repo = "${host}:${config.networking.hostName}"; encryption = { mode = "repokey";