summaryrefslogtreecommitdiff
path: root/system-profiles/qemu-guest.nix
blob: 8c07ca551ba62b0fc78416cdc050d552a42451c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ ... }:
{
  config = {
    boot.initrd = {
      kernelModules = [ "virtio_net" "virtio_pci" "virtio_mmio" "virtio_blk" "virtio_scsi" "9p" "9pnet_virtio" "virtio_balloon" "virtio_console" "virtio_rng" ];

      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
        '';
    };

    services.qemuGuest.enable = true;
  };
}