all repos — archive/nixos-configuration @ 97b6b1f4ed9d211d09f0fadbab92b3c93b604077

Superseded by nixfiles

modules/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";
  };
}