about summary refs log tree commit diff
path: root/hosts/aptos/services.nix
blob: 5e9894762f1cc4d16bad508bc1194e6cd150d7c4 (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
{ config, ... }:
let secrets = config.age.secrets;
in {
  my.services = {
    # monitors and controls temperature
    thermald.enable = true;

    # Enable TLP power management
    tlp.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" ];
    };
  };
}