summary refs log tree commit diff stats
path: root/system/settings/services/syncthing.nix
blob: 3623b8750c98fc2f77946ce5736d5ff2d68fc015 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config
, pkgs
, ...
}: {
  services.syncthing = {
    enable = true;
    user = "alan";
    group = "users";
    openDefaultPorts = true;
    systemService = false;
    dataDir = "/home/alan/.config/syncthing";
  };
}