restructured & first test of toggleable config

This commit is contained in:
2025-10-04 11:26:42 -05:00
parent 142dd3b568
commit 887e7c2b97
6 changed files with 85 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{ config, pkgs, ... }:
{
services.syncthing = {
enable = true;
user = "blake";
group = "blake";
dataDir = "/home/blake/.local/state/syncthing";
configDir = "/home/blake/.config/syncthing";
# webui
guiAddress = "0.0.0.0:2222";
openDefaultPorts = true;
};
}