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

13 lines
164 B
Nix

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