From 9489c5a02be3bc1bd82088bedb22170dd65f2b07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Wed, 2 Nov 2011 21:04:32 +0000 Subject: [PATCH] Setting default of unbound.enable to disabled. Few may want it enabled. svn path=/nixos/trunk/; revision=30198 --- modules/services/networking/unbound.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/networking/unbound.nix b/modules/services/networking/unbound.nix index 6211acfcc84..27493e4dc5b 100644 --- a/modules/services/networking/unbound.nix +++ b/modules/services/networking/unbound.nix @@ -48,7 +48,7 @@ in services.unbound = { enable = mkOption { - default = true; + default = false; description = " Whether to enable the Unbound domain name server. ";