nixos-config/linux/singularity/headscale.nix

18 lines
394 B
Nix

{config, ...}: {
services = {
headscale = with config.constants; {
enable = true;
address = localhost;
port = port.headscale;
settings = {
dns.base_domain = "tailscale.${domain}";
server_url = "https://headscale.${domain}";
};
};
tailscale = {
enable = true;
port = 27919;
useRoutingFeatures = "both";
};
};
}