aboutsummaryrefslogtreecommitdiff
path: root/profiles/storage-media.nix
blob: 9acb007847d42b31f4cd316ca9bca91db5a62bf0 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{ pkgs, config, ... }:
let
  syncJobs = [
    {
      name = "movies";
      source = "/data/media/movies/";
      destination = "/volume1/media/movies/";
    }
    {
      name = "videos";
      source = "/data/media/videos/";
      destination = "/volume1/media/videos/";
    }
  ];
  remoteHost = "192.168.1.68";
  remoteUser = "nas";
in
{
  environment.systemPackages = with pkgs; [
    ffmpeg
    imagemagick
    makemkv
    mkvtoolnix-cli
  ];

  services.samba = {
    enable = true;
    openFirewall = true;
    settings = {
      global = {
        security = "user";
        workgroup = "WORKGROUP";
        "server string" = config.networking.hostName;
        "netbios name" = config.networking.hostName;
        "hosts allow" = "192.168.1.0/24 10.100.0.0/24 localhost";
        "guest account" = "nobody";
        "map to guest" = "bad user";
        "use sendfile" = true;
        "load printers" = false;
        "vfs objects" = "fruit streams_xattr";
        "fruit:metadata" = "stream";
        "mangled names" = false;
      };
      media = {
        path = "/data/media";
        browseable = "yes";
        "read only" = "yes";
        "guest ok" = "yes";
      };
    };
  };

  services.avahi = {
    enable = true;
    nssmdns4 = true;
    openFirewall = true;
  };

  systemd.timers = pkgs.lib.listToAttrs (
    map (job: {
      name = "rsync-backup-${job.name}";
      value = {
        wantedBy = [ "timers.target" ];
        timerConfig = {
          OnCalendar = "daily";
          Persistent = true;
          RandomizedDelaySec = "1h";
        };
      };
    }) syncJobs
  );

  systemd.services = pkgs.lib.listToAttrs (
    map (job: {
      name = "rsync-backup-${job.name}";
      value = {
        description = "Rsync backup for ${job.name}";

        serviceConfig = {
          Type = "oneshot";
          DynamicUser = true;
          LoadCredential = "ssh-key:${config.age.secrets.rsync-ssh-key.path}";
          PrivateTmp = true;
          NoNewPrivileges = true;
          ProtectSystem = "strict";
          ProtectHome = true;

          ExecStart = pkgs.writeShellScript "rsync-backup-${job.name}" ''
            ${pkgs.rsync}/bin/rsync \
              -avz \
              -e "${pkgs.openssh}/bin/ssh -i ''${CREDENTIALS_DIRECTORY}/ssh-key -o StrictHostKeyChecking=accept-new" \
              ${job.source} \
              ${remoteUser}@${remoteHost}:${job.destination}
          '';
        };
      };
    }) syncJobs
  );
}