summaryrefslogtreecommitdiffstats
path: root/mb/2configs/qemu-guest.nix
diff options
context:
space:
mode:
authorjeschli <jeschli@gmail.com>2019-07-16 19:06:14 +0200
committerjeschli <jeschli@gmail.com>2019-07-16 19:06:14 +0200
commit6ec5b1abcf5d93b38f9531d74ce7a44f5526fc26 (patch)
tree5118d1fd5571799b91419dcd7a5803641b1294f6 /mb/2configs/qemu-guest.nix
parentecd65f1a4082fc97ae142701b0983279c030059a (diff)
parent1bfd05c2feb4bdffb2410b608b70e055d0d83a89 (diff)
Merge branch 'master' of prism.r:stockholm
Diffstat (limited to 'mb/2configs/qemu-guest.nix')
-rw-r--r--mb/2configs/qemu-guest.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/mb/2configs/qemu-guest.nix b/mb/2configs/qemu-guest.nix
new file mode 100644
index 0000000..315d040
--- /dev/null
+++ b/mb/2configs/qemu-guest.nix
@@ -0,0 +1,19 @@
+# Common configuration for virtual machines running under QEMU (using
+# virtio).
+
+{ ... }:
+
+{
+ boot.initrd.availableKernelModules = [ "virtio_net" "virtio_pci" "virtio_mmio" "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;
+}