summary refs log tree commit diff stats
path: root/modules/syncthing.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/syncthing.nix')
-rw-r--r--modules/syncthing.nix12
1 files changed, 0 insertions, 12 deletions
diff --git a/modules/syncthing.nix b/modules/syncthing.nix
deleted file mode 100644
index 5a3e1d6..0000000
--- a/modules/syncthing.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{ config, pkgs, ... }:
-
-{ services.syncthing = {
-    enable = true;
-    user = "alan";
-    group = "users";
-    openDefaultPorts = true;
-    systemService = true;
-    useInotify = true;
-    dataDir = "/home/alan/.config/syncthing";
-  };
-}