From 806b27a2977e9b87af9aa5e8d23a9415fb1095d3 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 23 Feb 2016 11:51:19 +0100 Subject: [PATCH] qemu-guest.nix: Disable rngd This gets rid of a zillion "rngd[N]: read error" messages during boot. --- nixos/modules/profiles/qemu-guest.nix | 2 ++ 1 file changed, 2 insertions(+) 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; }