chore(nix): fix property name in Headscale settings

- Corrected `baseDomain` to `base_domain` in the Headscale DNS settings.
- Aligns property naming with expected schema for proper configuration.
This commit is contained in:
Harald Hoyer 2025-11-21 16:24:28 +01:00
parent 2a810ce759
commit ef4ac5e228

View file

@ -11,7 +11,7 @@ in
settings = { settings = {
server_url = "https://${domain}"; server_url = "https://${domain}";
dns = { dns = {
baseDomain = "hoyer.tail"; base_domain = "hoyer.tail";
}; };
}; };
}; };