blob: ab8efe5f335d297569bec95a774f69ef807e2995 (
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, ... }:
let secrets = config.age.secrets;
in {
my.services = {
# monitors and controls temperature
thermald.enable = true;
# Enable TLP power management
tlp.enable = true;
# enable a few services related to the gnome desktop
gnome.enable = true;
# we need avahi in order to use the printer/scanner
avahi.enable = true;
syncthing.enable = true;
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" ];
};
};
}
|