summary refs log tree commit diff stats
path: root/system/hardware.nix
blob: c4c7dc934b070278f92e384905357a17274291a0 (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" "xen_blkfront" "vmw_pvscsi"];
  boot.initrd.kernelModules = ["nvme" "btrfs"];
}