From 2a810ce759704b74753d80eb9228ee00140a5d75 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Fri, 21 Nov 2025 16:23:53 +0100 Subject: [PATCH] chore(nix): remove enableACME from Headscale Nginx config - Dropped `enableACME` as it is redundant when `useACMEHost` is defined. - Simplifies Nginx virtual host configuration for Headscale. --- systems/x86_64-linux/mx/headscale.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/systems/x86_64-linux/mx/headscale.nix b/systems/x86_64-linux/mx/headscale.nix index 65fffc9..f44224a 100644 --- a/systems/x86_64-linux/mx/headscale.nix +++ b/systems/x86_64-linux/mx/headscale.nix @@ -19,7 +19,6 @@ in nginx.virtualHosts.${domain} = { useACMEHost = "hoyer.xyz"; forceSSL = true; - enableACME = true; locations."/" = { proxyPass = "http://localhost:${toString config.services.headscale.port}"; proxyWebsockets = true;