summary refs log tree commit diff stats
path: root/hosts/server1/hardware.nix
blob: 6086362af3ccca784361778c59dde2d4e51cf7b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{modulesPath, ...}: {
  imports = [
    (modulesPath + "/profiles/qemu-guest.nix")
    (modulesPath + "/profiles/headless.nix")
  ];
  # FIXME: The name of the grub device depends on the disko settings
  boot.loader.grub.device = "/dev/vda";
  boot.initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "virtio_pci" "sr_mod" "virtio_blk"];
  boot.initrd.kernelModules = [];
}