blob: a2210e2dfdf7bb803d921951ad12d70ab055be6e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{ config, ... }:
let secrets = config.age.secrets;
in {
my.services = {
backup = {
enable = true;
user = "fcuny";
repository = "sftp:192.168.0.107:/data/slow/backups/users/fcuny";
exclude = [
"/home/fcuny/.cache"
"/home/fcuny/downloads"
"/home/fcuny/workspace/linux.git"
];
timerConfig = { OnCalendar = "06:30"; };
passwordFile = secrets."restic/repo-users".path;
paths = [ "/home/fcuny" ];
};
};
}
|