python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / profiles / qemu-guest.nix
blob8b3df97ae0db96d2441e5b8b635b29ee2baaedde
1 # Common configuration for virtual machines running under QEMU (using
2 # virtio).
4 { config, lib, ... }:
7   boot.initrd.availableKernelModules = [ "virtio_net" "virtio_pci" "virtio_mmio" "virtio_blk" "virtio_scsi" "9p" "9pnet_virtio" ];
8   boot.initrd.kernelModules = [ "virtio_balloon" "virtio_console" "virtio_rng" ];
10   boot.initrd.postDeviceCommands = lib.mkIf (!config.boot.initrd.systemd.enable)
11     ''
12       # Set the system time from the hardware clock to work around a
13       # bug in qemu-kvm > 1.5.2 (where the VM clock is initialised
14       # to the *boot time* of the host).
15       hwclock -s
16     '';