mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
806b27a297
This gets rid of a zillion "rngd[N]: read error" messages during boot.
20 lines
587 B
Nix
20 lines
587 B
Nix
# Common configuration for virtual machines running under QEMU (using
|
|
# virtio).
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
boot.initrd.availableKernelModules = [ "virtio_net" "virtio_pci" "virtio_blk" "virtio_scsi" "9p" "9pnet_virtio" ];
|
|
boot.initrd.kernelModules = [ "virtio_balloon" "virtio_console" "virtio_rng" ];
|
|
|
|
boot.initrd.postDeviceCommands =
|
|
''
|
|
# Set the system time from the hardware clock to work around a
|
|
# bug in qemu-kvm > 1.5.2 (where the VM clock is initialised
|
|
# to the *boot time* of the host).
|
|
hwclock -s
|
|
'';
|
|
|
|
security.rngd.enable = false;
|
|
}
|