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

17 lines
295 B
Nix

{ config, pkgs, ... }:
{
services.syncthing = {
enable = true;
user = "blake";
group = "blake";
dataDir = "/home/blake/.local/state/syncthing";
configDir = "/home/blake/.config/syncthing";
# webui
guiAddress = "0.0.0.0:2222";
openDefaultPorts = true;
};
}