about summary refs log tree commit diff
path: root/hosts/tahoe/services.nix
blob: 75a6ee2cb39cdb4a3324a49f4b96897ef3fff11c (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
{ config, ... }:
let secrets = config.age.secrets;
in {
  my.services = {
    samba = {
      enable = true;
      publicShares = [ "/data/fast/music" "/data/fast/videos" ];
    };
    navidrome = {
      enable = true;
      musicFolder = "/data/fast/music";
    };
    unifi = { enable = true; };
    prometheus = { enable = true; };
    grafana = { enable = true; };
    gitea = {
      enable = true;
      stateDir = "/var/lib/gitea";
    };
    rclone = { enable = true; };
    traefik = { enable = true; };
    transmission = { enable = true; };
    metrics-exporter = { enable = true; };
    backup = {
      enable = true;
      repository = "/data/slow/backups/systems";
      timerConfig = { OnCalendar = "00:15"; };
      passwordFile = secrets."restic/repo-systems".path;
      paths = [ "/data/fast/music" "/data/fast/photos" "/data/fast/videos" ];
    };
  };
}