diff options
Diffstat (limited to 'hosts/server1/hardware.nix')
-rw-r--r-- | hosts/server1/hardware.nix | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/hosts/server1/hardware.nix b/hosts/server1/hardware.nix index 6086362..9abc64c 100644 --- a/hosts/server1/hardware.nix +++ b/hosts/server1/hardware.nix @@ -3,8 +3,12 @@ (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"; + + vhack.disko = { + enable = true; + # FIXME: Find a better way to specify the disk + disk = "/dev/vda"; + }; boot.initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "virtio_pci" "sr_mod" "virtio_blk"]; boot.initrd.kernelModules = []; } |