commit 67db9515d12446db0dfacf98311d9674866288ff parent 9ead660edc2a942013538fcf40fae3edf3de558d Author: MTRNord <mtrnord1@gmail.com> Date: Wed, 23 Aug 2023 13:08:42 +0200 Fix deprecations Diffstat:
| M | nixos/worker-1/configuration.nix | | | 13 | ++++++++----- |
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/nixos/worker-1/configuration.nix b/nixos/worker-1/configuration.nix @@ -432,15 +432,18 @@ enable = true; address = "0.0.0.0"; port = 8080; - serverUrl = "https://headscale.midnightthoughts.space"; - dns = { - baseDomain = "headscale.midnightthoughts.space"; - magicDns = true; + + dns_config = { + base_domain = "headscale.midnightthoughts.space"; + magic_dns = true; nameservers = [ "8.8.8.8" ]; }; - settings = { logtail.enabled = false; }; + settings = { + logtail.enabled = false; + server_url = "https://headscale.midnightthoughts.space"; + }; }; };