fix(nix): add DNS nameservers for headscale
- Added global DNS nameservers configuration for headscale - Included Cloudflare DNS servers (1.1.1.1, 1.0.0.1) and IPv6 addresses - Added local DNS server (192.168.178.254) for internal resolution
This commit is contained in:
parent
05eceda8ca
commit
71304185bd
1 changed files with 7 additions and 0 deletions
|
|
@ -12,6 +12,13 @@ in
|
||||||
server_url = "https://${domain}";
|
server_url = "https://${domain}";
|
||||||
dns = {
|
dns = {
|
||||||
base_domain = "hoyer.tail";
|
base_domain = "hoyer.tail";
|
||||||
|
nameservers.global = [
|
||||||
|
"192.168.178.254"
|
||||||
|
"1.1.1.1"
|
||||||
|
"1.0.0.1"
|
||||||
|
"2606:4700:4700::1111"
|
||||||
|
"2606:4700:4700::1001"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
oidc = {
|
oidc = {
|
||||||
allowed_domains = [ "hoyer.xyz" ];
|
allowed_domains = [ "hoyer.xyz" ];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue