summary refs log tree commit diff stats
path: root/modules/syncthing.nix
blob: 9c9b77872d2238cf637b9500b0d71efd214e2e7c (plain)
1
2
3
4
5
6
7
8
9
10
11
{ config, pkgs, ... }:

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