fix: exclude .mozilla in backup
This commit is contained in:
parent
b284971674
commit
7198988ffd
1 changed files with 3 additions and 1 deletions
|
@ -10,7 +10,9 @@ in {
|
||||||
services.borgbackup = {
|
services.borgbackup = {
|
||||||
jobs.backup = {
|
jobs.backup = {
|
||||||
paths = ["/home"];
|
paths = ["/home"];
|
||||||
exclude = [];
|
exclude = [
|
||||||
|
"/home/buffet/.mozilla"
|
||||||
|
];
|
||||||
repo = "${host}:${config.networking.hostName}";
|
repo = "${host}:${config.networking.hostName}";
|
||||||
encryption = {
|
encryption = {
|
||||||
mode = "repokey";
|
mode = "repokey";
|
||||||
|
|
Loading…
Reference in a new issue