mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
12 lines
287 B
Nix
12 lines
287 B
Nix
{
|
|
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"
|
|
];
|
|
};
|
|
}
|