dcgm: 3.3.5 -> 3.3.9; cudaPackages_10{,_0,_1,_2}: drop (#357655)
[NixPkgs.git] / nixos / modules / security / rngd.nix
blob8cca1c26d683a21783426530e21601d81c7998c7
1 { lib, ... }:
2 let
3   removed = k: lib.mkRemovedOptionModule [ "security" "rngd" k ];
4 in
6   imports = [
7     (removed "enable" ''
8        rngd is not necessary for any device that the kernel recognises
9        as an hardware RNG, as it will automatically run the krngd task
10        to periodically collect random data from the device and mix it
11        into the kernel's RNG.
12     '')
13     (removed "debug"
14       "The rngd module was removed, so its debug option does nothing.")
15   ];