diff --git a/hosts/hainich/services/syncthing.nix b/hosts/hainich/services/syncthing.nix new file mode 100644 index 0000000..4ac3110 --- /dev/null +++ b/hosts/hainich/services/syncthing.nix @@ -0,0 +1,9 @@ +{ config, lib, pkgs, ... }: +{ +services.syncthing = { + enable = true; + relay.enable = false; + openDefaultPorts = true; + guiAddress = "127.0.0.1:8384"; + }; +}