Files
nix/modules/syncthing.nix
2025-10-04 01:56:04 -05:00

13 lines
172 B
Nix

{ config, pkgs, ... }:
{
services.syncthing = {
enable = true;
user = "syncthing";
group = "syncthing";
# webui
guiAddress = "0.0.0.0:2222";
};
}