This commit is contained in:
Lukas Wurzinger 2025-03-30 16:22:14 +00:00
parent f2ed82ad3f
commit 4c7342110c
No known key found for this signature in database

View file

@ -1,11 +1,11 @@
{config, ...}: let
inherit (config.networking) hostname;
inherit (config.networking) hostName;
in {
services.syncthing = {
enable = true;
systemService = true;
openDefaultPorts = true;
guiAddress = "${hostname}.tailnet.helveticanonstandard.net:4000";
guiAddress = "${hostName}.tailnet.helveticanonstandard.net:4000";
overrideDevices = false;
overrideFolders = false;
};