add syncthing.nix module

This commit is contained in:
2025-10-04 01:39:07 -05:00
parent f178e01415
commit 3f1a00b110
2 changed files with 13 additions and 0 deletions

View File

@@ -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

12
modules/syncthing.nix Normal file
View File

@@ -0,0 +1,12 @@
{ config, pkgs, ... }:
{
services.syncthing = {
enable = true;
user = "blake";
group = "blake";
# webui
guiAddress = "0.0.0.0:2222";
};
}