blob: 5824223586490882679b4c38566c2ca5c18cf212 (
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";
};
}
|