mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59:32 -08:00
44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
{ config, headscale, ... }:
|
|
|
|
let
|
|
tailscale_dns_entries = import ./dns.nix;
|
|
baseDomain = "nickiel.net";
|
|
domain = "headscale.${baseDomain}";
|
|
in {
|
|
boot.kernel.sysctl."net.ipv4.ip_forward" = 1;
|
|
boot.kernel.sysctl."net.ipv6.conf.all.forwarding" = 1;
|
|
|
|
# open for DERP
|
|
networking.firewall.allowedUDPPorts = [ 3478 ];
|
|
|
|
# https://carjorvaz.com/posts/setting-up-headscale-on-nixos/
|
|
services.headscale = {
|
|
package = headscale.packages."x86_64-linux".headscale;
|
|
enable = true;
|
|
address = "0.0.0.0";
|
|
port = 8082;
|
|
settings = {
|
|
server_url = "https://${domain}";
|
|
dns_config = {
|
|
base_domain = baseDomain;
|
|
extra_records = tailscale_dns_entries;
|
|
};
|
|
derp = {
|
|
auto_update_enable = true;
|
|
update_frequency = "24h";
|
|
};
|
|
};
|
|
};
|
|
environment.systemPackages = [ config.services.headscale.package ];
|
|
|
|
services.nginx.virtualHosts = {
|
|
"headscale.nickiel.net" = {
|
|
forceSSL = true;
|
|
enableACME = true;
|
|
locations."/" = {
|
|
proxyPass = "http://127.0.0.1:${ toString config.services.headscale.port }";
|
|
proxyWebsockets = true;
|
|
};
|
|
};
|
|
};
|
|
}
|