You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
326 B
9 lines
326 B
1 year ago
|
{ modulesPath, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
|
||
|
boot.loader.grub.device = "/dev/vda";
|
||
|
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi" ];
|
||
|
boot.initrd.kernelModules = [ "nvme" ];
|
||
|
fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; };
|
||
|
}
|