1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/configs/backup.nix

12 lines
287 B
Nix
Raw Normal View History

2022-01-18 21:29:30 +01:00
{
services.restic.backups.niveum = {
initialize = true;
repository = "rest:http://zaatar.r:3571/";
timerConfig = { OnCalendar = "00:05"; RandomizedDelaySec = "5h"; };
passwordFile = toString <secrets/restic/password>;
paths = [
"/home/kfm/work"
];
};
}