mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-03-16 17:13:21 +00:00
Typo
This commit is contained in:
parent
cd513482d4
commit
77891f8d59
|
@ -7,7 +7,7 @@ with pkgs.lib;
|
|||
security.rngd.enable = mkOption {
|
||||
default = true;
|
||||
description = ''
|
||||
Whether tho enable the rng daemon, which adds entropy from
|
||||
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!
|
||||
'';
|
||||
|
@ -16,7 +16,7 @@ with pkgs.lib;
|
|||
|
||||
config = mkIf config.security.rngd.enable {
|
||||
boot.systemd.services.rngd = {
|
||||
wantedBy = [ config.boot.systemd.defaultUnit ];
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
|
||||
description = "Hardware RNG Entropy Gatherer Daemon";
|
||||
|
||||
|
|
Loading…
Reference in a new issue