From e76eb7f1a7864ed36130a6cb8a5d8d98c7d2e40e Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Thu, 22 Nov 2012 10:14:41 -0500 Subject: [PATCH] Disable rngd by default while I work on some patches to make it more systemd-friendly --- modules/security/rngd.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/security/rngd.nix b/modules/security/rngd.nix index 79f16f68c5ca..a4bf0d1eb2af 100644 --- a/modules/security/rngd.nix +++ b/modules/security/rngd.nix @@ -5,11 +5,11 @@ with pkgs.lib; { options = { security.rngd.enable = mkOption { - default = true; + default = false; description = '' Whether to enable the rng daemon, which adds entropy from hardware sources of randomness to the kernel entropy pool when - available. It is strongly recommended to keep this enabled! + available. ''; }; };