summary refs log tree commit diff
path: root/nixos/modules/profiles/qemu-guest.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2016-02-23 11:51:19 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2016-02-23 11:56:09 +0100
commit806b27a2977e9b87af9aa5e8d23a9415fb1095d3 (patch)
treea4c531969401e5de2be2cde89b27ef5c950fc866 /nixos/modules/profiles/qemu-guest.nix
parent474d5a7bd00e4d3cf3e15e4f0c80a5f46b96cbde (diff)
downloadnixpkgs-806b27a2977e9b87af9aa5e8d23a9415fb1095d3.tar
nixpkgs-806b27a2977e9b87af9aa5e8d23a9415fb1095d3.tar.gz
nixpkgs-806b27a2977e9b87af9aa5e8d23a9415fb1095d3.tar.bz2
nixpkgs-806b27a2977e9b87af9aa5e8d23a9415fb1095d3.tar.lz
nixpkgs-806b27a2977e9b87af9aa5e8d23a9415fb1095d3.tar.xz
nixpkgs-806b27a2977e9b87af9aa5e8d23a9415fb1095d3.tar.zst
nixpkgs-806b27a2977e9b87af9aa5e8d23a9415fb1095d3.zip
qemu-guest.nix: Disable rngd
This gets rid of a zillion "rngd[N]: read error" messages during boot.
Diffstat (limited to 'nixos/modules/profiles/qemu-guest.nix')
-rw-r--r--nixos/modules/profiles/qemu-guest.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/modules/profiles/qemu-guest.nix b/nixos/modules/profiles/qemu-guest.nix
index 759fdb7f8e5..987eb051b98 100644
--- a/nixos/modules/profiles/qemu-guest.nix
+++ b/nixos/modules/profiles/qemu-guest.nix
@@ -14,4 +14,6 @@
       # to the *boot time* of the host).
       hwclock -s
     '';
+
+  security.rngd.enable = false;
 }