summary refs log tree commit diff stats
path: root/system/hardware/default.nix
blob: 9fabafed2016f45a011aaa28454cfba3e04d6b92 (plain) (blame)
1
2
3
4
5
6
7
8
9
{modulesPath, ...}: {
  imports = [
    (modulesPath + "/profiles/qemu-guest.nix")
    (modulesPath + "/profiles/headless.nix")
  ];
  boot.loader.grub.device = "/dev/vda";
  boot.initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "virtio_pci" "sr_mod" "virtio_blk"];
  boot.initrd.kernelModules = [];
}