all repos — nixfiles @ 94aa169b424dc6fabc86e145af838711e0e5cb2d

System and user configuration, managed by nix and home-manager

system/settings/services/syncthing.nix (view raw)

1
2
3
4
5
6
7
8
9
10
11
{ config, pkgs, ... }:

{ services.syncthing = {
    enable = true;
    user = "alan";
    group = "users";
    openDefaultPorts = true;
    systemService = true;
    dataDir = "/home/alan/.config/syncthing";
  };
}