server7: add borg backup

This commit is contained in:
Ehmry - 2020-03-26 06:08:14 +01:00
parent ac3663a4d4
commit cf11f394b9
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
{ config, ... }:
{
services.borgbackup.repos.emery = {
allowSubRepos = true;
authorizedKeys = config.users.users.emery.openssh.authorizedKeys.keys;
path = "/srv/ceph/c3d2/backups/emery";
quota = "200G";
};
}