diff options
author | lassulus <lassulus@lassul.us> | 2019-11-24 18:15:14 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2019-11-24 18:17:31 +0100 |
commit | 5fa963b6bc879e1307978234c884e3a88d88c7a5 (patch) | |
tree | 00a639640861ca9f8889a69892a3cb43f8cac97c /mb/2configs/qemu-guest.nix | |
parent | 1144633bd009f24180067e93f1e7fdc0deb41a8c (diff) |
delete mb
Diffstat (limited to 'mb/2configs/qemu-guest.nix')
-rw-r--r-- | mb/2configs/qemu-guest.nix | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/mb/2configs/qemu-guest.nix b/mb/2configs/qemu-guest.nix deleted file mode 100644 index 315d04093..000000000 --- a/mb/2configs/qemu-guest.nix +++ /dev/null @@ -1,19 +0,0 @@ -# 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; -} |