blob: a608415fe1dfa0a2277f10bd6cf7f39cc706cebd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{ config, pkgs, ... }:
{
age = {
secrets = {
restic-local-pw = {
file = ../secrets/restic-pw.age;
};
};
};
environment.systemPackages = with pkgs; [
restic
];
services.restic = {
backups = {
local = {
paths = [ ];
passwordFile = config.age.secrets.restic-local-pw.path;
repository = "/data/backups/";
initialize = true;
timerConfig.OnCalendar = "daily";
timerConfig.RandomizedDelaySec = "5m";
extraBackupArgs = [ ];
pruneOpts = [
"--keep-daily=7"
"--keep-weekly=4"
"--keep-monthly=12"
];
};
};
};
}
|