Compare commits

..

No commits in common. "30fc01b5ae44bbe395dce75bd106bad862c468cc" and "fe720b2de36a2df88c75d66eb817e1d6b4a8d9e7" have entirely different histories.

2 changed files with 1 additions and 5 deletions

View file

@ -92,7 +92,7 @@ in
services.restic.backups.backblaze = {
# Take care of included and excluded files
paths = cfg.paths;
extraBackupArgs = [ "--verbose=2" ]
extraBackupArgs = [ ]
++ lib.optional (builtins.length cfg.exclude != 0) excludeArg
;
# Take care of creating the repository if it doesn't exist

View file

@ -70,10 +70,6 @@ in
paths = [
config.services.nextcloud.home
];
exclude = [
# image previews can take up a lot of space
"${config.services.nextcloud.home}/data/appdata_*/preview"
];
};
};
}