From 23f7ee09116c3e7ce6ce4ad9ffa797f5705d1fb9 Mon Sep 17 00:00:00 2001 From: blake Date: Sat, 4 Oct 2025 02:01:39 -0500 Subject: [PATCH] added options for syncthing --- modules/syncthing.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/modules/syncthing.nix b/modules/syncthing.nix index db9f954..4db4f65 100644 --- a/modules/syncthing.nix +++ b/modules/syncthing.nix @@ -3,10 +3,14 @@ { services.syncthing = { enable = true; - user = "syncthing"; - group = "syncthing"; + user = "blake"; + group = "blake"; + + dataDir = "/home/blake/.local/state/syncthing"; + configDir = "/home/blake/.config/syncthing"; # webui guiAddress = "0.0.0.0:2222"; + openDefaultPorts = true; }; }