remove headscale

This commit is contained in:
TheWanderingCrow 2025-11-24 13:03:42 -05:00
parent fb0205b43d
commit 199b5d31d8
2 changed files with 0 additions and 25 deletions

View file

@ -17,7 +17,6 @@
# FIXME(TODO): Turn this into it's own backup module
./backup.nix
./headscale.nix
# Disks
inputs.disko.nixosModules.disko

View file

@ -1,24 +0,0 @@
{pkgs, ...}: {
services.caddy = {
enable = true;
virtualHosts."headscale.wanderingcrow.net".extraConfig = ''
reverse_proxy 127.0.0.1:8088
'';
};
services.headscale = {
enable = true;
package = pkgs.headscale;
port = 8088;
address = "127.0.0.1";
settings = {
server_url = "https://headscale.wanderingcrow.net";
grpc_listen_addr = "0.0.0.0:50443";
database.type = "sqlite";
dns = {
magic_dns = true;
base_domain = "wce-internal";
};
};
};
}