about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authornicoo <nicoo@mur.at>2021-02-21 01:37:18 +0100
committernicoo <nicoo@mur.at>2021-02-21 01:37:18 +0100
commit16b6c4b2d7b0bb5e64492daf4e9adc185bbcf48d (patch)
treebe9d2c4834ff2b829173d2ffa7d299f00382cfe8 /nixos
parentd7c15d0eece59a3cf779ac9fa871c7f88f27cf9d (diff)
nixos/manual/virtualbox-guest: Remove mentions of rngd
Diffstat (limited to 'nixos')
-rw-r--r--nixos/doc/manual/installation/installing-virtualbox-guest.xml7
1 files changed, 1 insertions, 6 deletions
diff --git a/nixos/doc/manual/installation/installing-virtualbox-guest.xml b/nixos/doc/manual/installation/installing-virtualbox-guest.xml
index 4957b700946ef..019e5098a8e27 100644
--- a/nixos/doc/manual/installation/installing-virtualbox-guest.xml
+++ b/nixos/doc/manual/installation/installing-virtualbox-guest.xml
@@ -83,17 +83,12 @@
   VirtualBox settings (Machine / Settings / Shared Folders, then click on the
   "Add" icon). Add the following to the
   <literal>/etc/nixos/configuration.nix</literal> to auto-mount them. If you do
-  not add <literal>"nofail"</literal>, the system will not boot properly. The
-  same goes for disabling <literal>rngd</literal> which is normally used to get
-  randomness but this does not work in virtual machines.
+  not add <literal>"nofail"</literal>, the system will not boot properly.
  </para>
 
 <programlisting>
 { config, pkgs, ...} :
 {
-  security.rngd.enable = false; // otherwise vm will not boot
-  ...
-
   fileSystems."/virtualboxshare" = {
     fsType = "vboxsf";
     device = "nameofthesharedfolder";