14 lines
300 B
Nix
14 lines
300 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;
|
|
};
|
|
}
|