Disable rngd by default while I work on some patches to make it more systemd-friendly

This commit is contained in:
Shea Levy 2012-11-22 10:14:41 -05:00
parent 994a15bc25
commit e76eb7f1a7

View File

@ -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.
'';
};
};