3
0
Fork 0
forked from mirrors/nixpkgs

nixos/dnscrypt-proxy: default to random upstream resolver

This commit is contained in:
Joachim Fasting 2017-08-07 01:30:27 +02:00
parent 7e5332c868
commit 767b2ae327
No known key found for this signature in database
GPG key ID: 66EAB6B14F6B6E0D

View file

@ -82,14 +82,13 @@ in
}; };
resolverName = mkOption { resolverName = mkOption {
default = "dnscrypt.eu-nl"; default = "random";
example = "dnscrypt.eu-nl";
type = types.nullOr types.str; type = types.nullOr types.str;
description = '' description = ''
The name of the DNSCrypt resolver to use, taken from The name of the DNSCrypt resolver to use, taken from
<filename>${resolverList}</filename>. The default <filename>${resolverList}</filename>. The default is to
resolver is located in Holland, supports DNS security pick a random non-logging resolver that supports DNSSEC.
extensions, and <emphasis>claims</emphasis> to not
keep logs.
''; '';
}; };