commit 2a80d9b76520e784269064b5da843b29361d8fca parent 5b0cb802ff00d6ee0121edc961bec5a85f29f740 Author: MTRNord <mtrnord1@gmail.com> Date: Wed, 23 Aug 2023 13:21:17 +0200 Fix headscale Diffstat:
| M | nixos/worker-1/configuration.nix | | | 15 | ++++++++------- |
1 file changed, 8 insertions(+), 7 deletions(-)
diff --git a/nixos/worker-1/configuration.nix b/nixos/worker-1/configuration.nix @@ -433,16 +433,17 @@ address = "0.0.0.0"; port = 8080; - dns_config = { - base_domain = "headscale.midnightthoughts.space"; - magic_dns = true; - nameservers = [ - "8.8.8.8" - ]; - }; settings = { logtail.enabled = false; server_url = "https://headscale.midnightthoughts.space"; + + dns_config = { + base_domain = "headscale.midnightthoughts.space"; + magic_dns = true; + nameservers = [ + "8.8.8.8" + ]; + }; }; }; };