2022-11-02 11:32:03 +00:00
|
|
|
{ modulesPath, ... }: {
|
2022-11-10 14:57:07 +00:00
|
|
|
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";
|
|
|
|
boot.initrd.kernelModules = [ "nvme" ];
|
|
|
|
fileSystems."/" = {
|
|
|
|
device = "/dev/sda1";
|
|
|
|
fsType = "ext4";
|
|
|
|
};
|
|
|
|
}
|