File tree 1 file changed +7
-4
lines changed
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 33
33
1. at least one DNS server is added
34
34
2. `Override local DNS` is enabled
35
35
36
- As this option sets 100.100.100.100 as your sole DNS server , if the requirements above are not met,
36
+ As this option sets 100.100.100.100 and fd7a:115c:a1e0::53 as your sole DNS servers , if the requirements above are not met,
37
37
all non-MagicDNS queries WILL fail.
38
38
'' ;
39
39
} ;
40
40
} ;
41
41
42
42
config = mkIf cfg . enable {
43
43
assertions = [ {
44
- assertion = ! cfg . overrideLocalDns || config . networking . dns == [ "100.100.100.100" ] ;
44
+ assertion = cfg . overrideLocalDns -> ( builtins . elem config . networking . dns "100.100.100.100" || builtins . elem config . networking . dns "fd7a:115c:a1e0::53" ) ;
45
45
message = ''
46
46
DNS servers should be configured on the Tailscale control panel when `services.tailscale.overrideLocalDns` is enabled.
47
47
61
61
} ;
62
62
} ;
63
63
64
- networking . dns = mkIf cfg . overrideLocalDns [ "100.100.100.100" ] ;
64
+ networking . dns = mkIf cfg . overrideLocalDns [ "100.100.100.100" "fd7a:115c:a1e0::53" ] ;
65
65
66
66
# Ensures Tailscale MagicDNS always works even without adding 100.100.100.100 to DNS servers
67
- environment . etc . "resolver/ts.net" . text = "nameserver 100.100.100.100" ;
67
+ environment . etc . "resolver/ts.net" . text = ''
68
+ nameserver 100.100.100.100
69
+ nameserver fd7a:115c:a1e0::53
70
+ '' ;
68
71
69
72
# This file gets created by tailscaled when `Override local DNS` is turned off
70
73
environment . etc . "resolver/ts.net" . knownSha256Hashes = [
You can’t perform that action at this time.
0 commit comments