config.nix/modules/syncthing/default.nix
2025-12-18 18:06:15 +01:00

21 lines
220 B
Nix

{
config,
lib,
pkgs,
...
}:
{
options = {
};
config = {
services = {
syncthing = {
enable = true;
tray.enable = true;
guiAddress = "0.0.0.0:8384";
};
};
};
}