- Reorganized `settings` block to simplify and correct nesting. - Updated function arguments to include variadic parameters for extensibility.
31 lines
653 B
Nix
31 lines
653 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;
|
|
enableACME = true;
|
|
locations."/" = {
|
|
proxyPass = "http://localhost:${toString config.services.headscale.port}";
|
|
proxyWebsockets = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = [ config.services.headscale.package ];
|
|
}
|