2022-12-04 13:45:43 +00:00
|
|
|
{modulesPath, ...}: {
|
|
|
|
imports = [(modulesPath + "/profiles/qemu-guest.nix")];
|
2022-11-02 11:32:03 +00:00
|
|
|
|
|
|
|
boot.loader.grub.enable = true;
|
|
|
|
boot.loader.grub.device = "/dev/sda";
|
2022-12-04 13:45:43 +00:00
|
|
|
boot.initrd.kernelModules = ["nvme"];
|
2022-11-02 11:32:03 +00:00
|
|
|
fileSystems."/" = {
|
|
|
|
device = "/dev/sda1";
|
|
|
|
fsType = "ext4";
|
|
|
|
};
|
|
|
|
}
|