From ef4ac5e228deb52737a27965d873a2795dc453ce Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Fri, 21 Nov 2025 16:24:28 +0100 Subject: [PATCH] chore(nix): fix property name in Headscale settings - Corrected `baseDomain` to `base_domain` in the Headscale DNS settings. - Aligns property naming with expected schema for proper configuration. --- systems/x86_64-linux/mx/headscale.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/x86_64-linux/mx/headscale.nix b/systems/x86_64-linux/mx/headscale.nix index f44224a..a90ece1 100644 --- a/systems/x86_64-linux/mx/headscale.nix +++ b/systems/x86_64-linux/mx/headscale.nix @@ -11,7 +11,7 @@ in settings = { server_url = "https://${domain}"; dns = { - baseDomain = "hoyer.tail"; + base_domain = "hoyer.tail"; }; }; };