13 lines
298 B
Nix
13 lines
298 B
Nix
{config, ...}: let
|
|
inherit (config.networking) hostName;
|
|
in {
|
|
services.syncthing = {
|
|
enable = true;
|
|
systemService = true;
|
|
openDefaultPorts = true;
|
|
guiAddress = "${hostName}.tailnet.helveticanonstandard.net:4000";
|
|
overrideDevices = false;
|
|
overrideFolders = false;
|
|
};
|
|
}
|