- Corrected `baseDomain` to `base_domain` in the Headscale DNS settings. - Aligns property naming with expected schema for proper configuration.
30 lines
629 B
Nix
30 lines
629 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 = {
|
|
base_domain = "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 ];
|
|
}
|