mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
ebc6d7f435
reached, the event queue contains: /sys/devices/virtual/tty/hvc1" VM failures. svn path=/nixos/trunk/; revision=33259
9 lines
255 B
Nix
9 lines
255 B
Nix
# Common configuration for virtual machines running under QEMU (using
|
|
# virtio).
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
boot.initrd.availableKernelModules = [ "virtio_net" "virtio_pci" "virtio_blk" ];
|
|
boot.kernelModules = [ "virtio_balloon" "virtio_console" ];
|
|
}
|