Skip to content

Commit

Permalink
nixos/dnscrypt-proxy: default to random upstream resolver
Browse files Browse the repository at this point in the history
  • Loading branch information
joachifm committed Aug 9, 2017
1 parent 7e5332c commit 767b2ae
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions nixos/modules/services/networking/dnscrypt-proxy.nix
Expand Up @@ -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.
'';
};

Expand Down

0 comments on commit 767b2ae

Please sign in to comment.