diff --git a/hosts/snowbelle/snowbelle.nix b/hosts/snowbelle/snowbelle.nix index c953925..968f56a 100644 --- a/hosts/snowbelle/snowbelle.nix +++ b/hosts/snowbelle/snowbelle.nix @@ -6,6 +6,7 @@ ./hardware-configuration.nix ../../modules/ssh.nix ../../modules/docker.nix + ../../modules/syncthing.nix ../../modules/homelab/zfs.nix ../../modules/homelab/smb.nix ../../modules/homelab/nfs.nix diff --git a/modules/syncthing.nix b/modules/syncthing.nix new file mode 100644 index 0000000..10c8a4e --- /dev/null +++ b/modules/syncthing.nix @@ -0,0 +1,12 @@ +{ config, pkgs, ... }: + +{ + services.syncthing = { + enable = true; + user = "blake"; + group = "blake"; + + # webui + guiAddress = "0.0.0.0:2222"; + }; +}