From 129630c163b34a3bc4fedafbc3724f33865b6d10 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Fri, 21 Nov 2025 16:22:56 +0100 Subject: [PATCH] chore(nix): refactor Headscale service configuration - Reorganized `settings` block to simplify and correct nesting. - Updated function arguments to include variadic parameters for extensibility. --- systems/x86_64-linux/mx/headscale.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/systems/x86_64-linux/mx/headscale.nix b/systems/x86_64-linux/mx/headscale.nix index 86f2d56..65fffc9 100644 --- a/systems/x86_64-linux/mx/headscale.nix +++ b/systems/x86_64-linux/mx/headscale.nix @@ -1,4 +1,4 @@ -{ config }: +{ config, ... }: let domain = "headscale.hoyer.xyz"; in @@ -8,12 +8,11 @@ in enable = true; address = "0.0.0.0"; port = 8080; - server_url = "https://${domain}"; - dns = { - baseDomain = "hoyer.tail"; - }; settings = { - logtail.enabled = false; + server_url = "https://${domain}"; + dns = { + baseDomain = "hoyer.tail"; + }; }; };