dnscrypt-proxy service: remove use of mkEnableOption

This commit is contained in:
Joachim Fasting 2016-10-23 23:26:21 +02:00
parent 236a32069a
commit d198e474a8
No known key found for this signature in database
GPG key ID: 7544761007FE4E08

View file

@ -35,7 +35,11 @@ in
options = {
services.dnscrypt-proxy = {
enable = mkEnableOption "DNSCrypt client proxy";
enable = mkOption {
default = false;
type = types.bool;
description = "Whether to enable the DNSCrypt client proxy";
};
localAddress = mkOption {
default = "127.0.0.1";