nixcfg/systems/x86_64-linux/mx/headscale.nix
Harald Hoyer 2a810ce759 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.
2025-11-21 16:23:53 +01:00

30 lines
628 B
Nix

{ config, ... }:
let
domain = "headscale.hoyer.xyz";
in
{
services = {
headscale = {
enable = true;
address = "0.0.0.0";
port = 8080;
settings = {
server_url = "https://${domain}";
dns = {
baseDomain = "hoyer.tail";
};
};
};
nginx.virtualHosts.${domain} = {
useACMEHost = "hoyer.xyz";
forceSSL = true;
locations."/" = {
proxyPass = "http://localhost:${toString config.services.headscale.port}";
proxyWebsockets = true;
};
};
};
environment.systemPackages = [ config.services.headscale.package ];
}