summaryrefslogtreecommitdiffstats
path: root/mb/2configs/qemu-guest.nix
diff options
context:
space:
mode:
authormagenbluten <magenbluten@codemonkey.cc>2019-07-14 13:05:51 +0200
committermagenbluten <magenbluten@codemonkey.cc>2019-07-14 13:24:59 +0200
commit08b81051969e0b0e03dd240bd3c83e42e2619521 (patch)
tree00bacc5fe1f073bc2da84c70a082623a09c33870 /mb/2configs/qemu-guest.nix
parent02ab71056896e651b6998b5211caf1d51f1d26b7 (diff)
mb: add rofl.r
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 00000000..315d0409
--- /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;
+}