From c79c8413f2fdc723d35df61f2cadfc02e41d7d4c Mon Sep 17 00:00:00 2001 From: schweby Date: Wed, 27 Jan 2021 11:13:36 +0100 Subject: [PATCH] hainich: added syncthing --- hosts/hainich/services/syncthing.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 hosts/hainich/services/syncthing.nix 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"; + }; +}