aboutsummaryrefslogtreecommitdiff
path: root/modules/workstation/syncthing/default.nix
blob: 28aee522801bcf30c58c9fa9b26d0e999a3d9eed (plain)
1
2
3
4
5
6
7
8
9
10
{ pkgs, ... }: {
  services.syncthing = {
    enable = true;
    dataDir = "/home/.local/syncthing/";
    user = "spacekookie";
    group = "spacekookie";
    openDefaultPorts = false;
    guiAddress = "localhost:1234";
  };
}