2011-03-18 15:38:22 +03:00
|
|
|
# Common configuration for virtual machines running under QEMU (using
|
|
|
|
# virtio).
|
|
|
|
|
2022-04-30 20:17:57 +03:00
|
|
|
{ config, lib, ... }:
|
2011-03-18 15:38:22 +03:00
|
|
|
|
|
|
|
{
|
2017-11-24 15:48:18 +03:00
|
|
|
boot.initrd.availableKernelModules = [ "virtio_net" "virtio_pci" "virtio_mmio" "virtio_blk" "virtio_scsi" "9p" "9pnet_virtio" ];
|
2014-04-30 20:23:42 +04:00
|
|
|
boot.initrd.kernelModules = [ "virtio_balloon" "virtio_console" "virtio_rng" ];
|
2014-03-30 18:52:56 +04:00
|
|
|
|
2022-04-30 20:17:57 +03:00
|
|
|
boot.initrd.postDeviceCommands = lib.mkIf (!config.boot.initrd.systemd.enable)
|
2014-03-30 18:52:56 +04:00
|
|
|
''
|
|
|
|
# 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
|
|
|
|
'';
|
2011-03-18 15:38:22 +03:00
|
|
|
}
|