From 4c7342110cb0f5f5c8aa7a9a158e85f643868585 Mon Sep 17 00:00:00 2001
From: Lukas Wurzinger <lukas@wrz.one>
Date: Sun, 30 Mar 2025 16:22:14 +0000
Subject: [PATCH] stuff

---
 common/syncthing.nix | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/common/syncthing.nix b/common/syncthing.nix
index 64fd3f1..7b6c8ad 100644
--- a/common/syncthing.nix
+++ b/common/syncthing.nix
@@ -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;
   };