all repos — archive/nixos-configuration @ c24e26149c78725b33c68b6bce46cc9fc79f9bea

Superseded by nixfiles

Add syncthing configuration

Alan Pearce
commit

c24e26149c78725b33c68b6bce46cc9fc79f9bea

parent

a5b0892e4f3d255d695f6a54219e1f5edf21c725

1 file changed, 11 insertions(+), 0 deletions(-)

changed files
A modules/syncthing.nix
@@ -0,0 +1,11 @@
+{ config, pkgs, ... }: + +{ services.syncthing = { + enable = true; + user = "alan"; + group = "users"; + systemService = true; + useInotify = true; + dataDir = "/home/alan/.config/syncthing"; + }; +}