summaryrefslogtreecommitdiff
path: root/os/srv/syncthing.nix
blob: 1531c04c486ae29feda8ee4dc7772f37cc822ee1 (plain)
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
{
  config,
  lib,
  username,
  ...
}:
let
  cfg = config.os.srv.syncthing;
in
{
  options.os.srv.syncthing.enable = lib.mkEnableOption "enables syncthing syncing";
  config = lib.mkIf cfg.enable {
    services.syncthing = {
      enable = true;
      user = "${username}";
      dataDir = "/home/${username}/.local/share/syncthing";
      configDir = "/home/${username}/.config/syncthing";
      guiPasswordFile = config.sops.secrets."syncthing/gui_password".path;

      settings = {
        devices = {
          "desktop" = {
            id = "YGMWGOB-LTJUDM7-CY25MAF-NPE7J4J-KYRNPB5-ZHD5DBI-VNRAXI6-LIP2DQP";
          };
          "laptop" = {
            id = "";
          };
          "thinkpad" = {
            id = "";
          };
        };
        folders = {
          "game-saves" = {
            path = "/home/${username}/.saves";
            id = "shared-saves-v1";
            devices = [
              "desktop"
              "laptop"
              "thinkpad"
            ];

            versioning = {
              type = "staggered";
              params = {
                cleanInterval = "3600";
                maxAge = "2592000";
              };
            };
          };
        };
      };
    };
  };
}