nixcfg/systems/x86_64-linux/mx/headscale.nix
Harald Hoyer 71304185bd fix(nix): add DNS nameservers for headscale
- Added global DNS nameservers configuration for headscale
- Included Cloudflare DNS servers (1.1.1.1, 1.0.0.1) and IPv6 addresses
- Added local DNS server (192.168.178.254) for internal resolution
2025-12-03 10:49:18 +01:00

47 lines
1.2 KiB
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 = {
base_domain = "hoyer.tail";
nameservers.global = [
"192.168.178.254"
"1.1.1.1"
"1.0.0.1"
"2606:4700:4700::1111"
"2606:4700:4700::1001"
];
};
oidc = {
allowed_domains = [ "hoyer.xyz" ];
client_id = "UgQYtXftYvB9ua4cuyZ9NBvaknQfN76pPnf50pDhqghdb87g9tFcuSMiTLVje3R7";
client_secret_path = "/var/lib/headscale/client_secret";
issuer = "https://nc.hoyer.xyz";
};
};
};
nginx.virtualHosts.${domain} = {
useACMEHost = "hoyer.xyz";
forceSSL = true;
locations."/" = {
proxyPass = "http://localhost:${toString config.services.headscale.port}";
proxyWebsockets = true;
extraConfig = ''
proxy_redirect http:// https://;
proxy_buffering off;
'';
};
};
};
environment.systemPackages = [ config.services.headscale.package ];
}