02c51206fe
add jobrad
34 lines
762 B
Nix
34 lines
762 B
Nix
{ lib, config, pkgs, ... }: {
|
|
|
|
backup.enable = true;
|
|
|
|
# provide repository
|
|
services.borgbackup.repos = {
|
|
default = {
|
|
quota = "100G";
|
|
allowSubRepos = true;
|
|
authorizedKeys = [
|
|
# todo rename
|
|
(lib.fileContents ../../assets/ssh/borg_access.pub)
|
|
(lib.fileContents ../../assets/ssh/palo_rsa.pub)
|
|
];
|
|
};
|
|
};
|
|
|
|
# mirror backup folder to /media
|
|
systemd.services.borg-mirror-to-media = {
|
|
enable = true;
|
|
script = ''
|
|
${pkgs.rsync}/bin/rsync -a \
|
|
/var/lib/borgbackup/ \
|
|
/media/borg-backup-mirror \
|
|
--delete-after
|
|
'';
|
|
};
|
|
systemd.timers.borg-mirror-to-media = {
|
|
enable = true;
|
|
timerConfig.OnCalendar = "daily";
|
|
wantedBy = [ "multi-user.target" ];
|
|
};
|
|
|
|
}
|