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

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