allow renaming borg backups

This commit is contained in:
Tim Schubert 2022-04-15 19:45:58 +02:00
parent 5419038e75
commit 790d62a58f
Signed by: dadada
GPG key ID: EEB8D1CE62C4DFEA
2 changed files with 4 additions and 1 deletions

View file

@ -54,7 +54,7 @@ in
]; ];
}; };
users.users.borg.home = "/mnt/storage/backup"; users.users.borg.home = backups;
services.borgbackup.repos = { services.borgbackup.repos = {
"metis" = { "metis" = {
allowSubRepos = false; allowSubRepos = false;

View file

@ -74,6 +74,9 @@ in
}; };
compression = "auto,lz4"; compression = "auto,lz4";
startAt = "daily"; startAt = "daily";
environment = {
BORG_RELOCATED_REPO_ACCESS_IS_OK = "yes";
};
}; };
}; };
} }