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