diff --git a/modules/security/rngd.nix b/modules/security/rngd.nix index 79f16f68c5c..a4bf0d1eb2a 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. ''; }; };