nicks-nix-config/hosts/Alaska/modules/headscale.nix

56 lines
1.4 KiB
Nix
Raw Normal View History

2024-01-09 18:47:47 -08:00
{ config, pkgs, headscale, ... }:
2023-08-05 09:56:57 -07:00
let
2023-10-15 16:35:06 -07:00
tailscale_dns_entries = import ./dns.nix;
2023-08-05 09:56:57 -07:00
baseDomain = "nickiel.net";
domain = "headscale.${baseDomain}";
in {
# headscale routes list
# headscale routes enable -r NUMBER
# to enable exit node to be used
boot.kernel.sysctl."net.ipv4.ip_forward" = 1;
boot.kernel.sysctl."net.ipv6.conf.all.forwarding" = 1;
2023-11-01 19:59:59 -07:00
# open for DERP
networking.firewall.allowedUDPPorts = [ 3478 ];
# https://carjorvaz.com/posts/setting-up-headscale-on-nixos/
2023-08-05 09:56:57 -07:00
services.headscale = {
2024-01-09 18:47:47 -08:00
package = headscale.packages.${pkgs.system}.headscale;
2023-08-05 09:56:57 -07:00
enable = true;
address = "0.0.0.0";
port = 8082;
settings = {
2024-04-19 18:46:00 -07:00
prefixes = {
v6 = "fd7a:115c:a1e0::/48";
v4 = "100.64.0.0/10";
};
2023-08-05 09:56:57 -07:00
server_url = "https://${domain}";
2024-04-19 18:46:00 -07:00
database = {
type = "sqlite3";
sqlite.path = "/var/lib/headscale/db.sqlite";
};
2023-10-15 16:35:06 -07:00
dns_config = {
base_domain = baseDomain;
extra_records = tailscale_dns_entries;
};
derp = {
auto_update_enable = true;
update_frequency = "24h";
};
2023-08-05 09:56:57 -07:00
};
};
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;
};
};
};
2023-08-05 09:56:57 -07:00
}