about summary refs log tree commit diff
path: root/hosts/common/nas.nix
blob: c650bba3e327de88dbeaaf00bb448a106084b021 (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, lib, ... }:

{
  imports = [
    ./server/default.nix
    ./server/samba.nix
    ./server/prometheus.nix
    ./server/grafana.nix
    ./server/traefik.nix
    ./server/transmission.nix
    ./server/unifi.nix
    ./server/gitea.nix
  ];

  users.groups.nas.gid = 5000;
  users.users.nas = {
    uid = 5000;
    group = "nas";
    isSystemUser = true;
  };

  services.restic.backups = {
    media = {
      paths = [ "/data/fast/music" "/data/fast/photos" ];
      repository = "/data/slow/backups/systems";
      passwordFile = config.age.secrets.restic-repo-systems.path;
      timerConfig = { OnCalendar = "00:55"; };
      initialize = true;
      extraBackupArgs = [ "--tag media" ];
      pruneOpts = [ "--keep-daily 7" "--keep-weekly 4" "--keep-monthly 12" ];
    };
  };
}