ark/modules/network/dns/stubby/nextdns.nix

18 lines
488 B
Nix
Raw Permalink Normal View History

2020-11-21 23:54:07 +03:00
{
services.stubby = {
roundRobinUpstreams = false;
2022-03-09 23:55:02 +03:00
upstreamServers = let
nextDnsId = "75e43d";
in ''
- address_data: 45.90.28.0
tls_auth_name: "${nextDnsId}.dns1.nextdns.io"
- address_data: 2a07:a8c0::0
tls_auth_name: "${nextDnsId}.dns1.nextdns.io"
- address_data: 45.90.30.0
tls_auth_name: "${nextDnsId}.dns2.nextdns.io"
- address_data: 2a07:a8c1::0
tls_auth_name: "${nextDnsId}.dns2.nextdns.io"
'';
2020-11-21 23:54:07 +03:00
};
}