summaryrefslogtreecommitdiff
path: root/modules/nixos/headscale.nix
blob: e3e6f5ac4aafb9e150fbce8e3299de72f64d431a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{config, pkgs, ...}:
let 
  domain = "myrmexia.xyz";
  subDomain = "bosco.${domain}";
in {
  services = {
    headscale = {
      enable = true;
      address = "0.0.0.0";
      port = 8080;
      settings = { 
        logtail.enabled = false; 
        serverUrl = "https://${subDomain}";
        dns_config.base_domain = "${domain}";
      };
    };

    caddy = {
      enable = true;
      email = "devin.finlinson@pm.me";
      virtualHosts.${subDomain}.extraConfig = ''
        reverse_proxy http://localhost:${toString config.services.headscale.port}
      '';
    };
  };

  networking.firewall.allowedTCPPorts = [ 80 443 ];
}