blob: ab775dcb480025ca5a89ff4be5a45fa0129f4f2b (
plain)
1
2
3
4
5
6
7
|
{ modulesPath, ... }:
{
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot.loader.grub.device = "/dev/vda";
boot.initrd.kernelModules = [ "nvme" ];
fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; };
}
|