2023-06-23 09:25:35 -04:00
|
|
|
{modulesPath, ...}: {
|
|
|
|
imports = [(modulesPath + "/profiles/qemu-guest.nix")];
|
2023-11-29 23:04:57 -05:00
|
|
|
boot.loader.grub = {
|
|
|
|
efiSupport = true;
|
|
|
|
efiInstallAsRemovable = true;
|
|
|
|
device = "nodev";
|
|
|
|
};
|
2024-01-04 14:41:38 -05:00
|
|
|
|
2023-11-29 23:04:57 -05:00
|
|
|
fileSystems."/boot" = {
|
|
|
|
device = "/dev/disk/by-uuid/B793-1B2C";
|
|
|
|
fsType = "vfat";
|
|
|
|
};
|
2024-01-04 14:41:38 -05:00
|
|
|
|
2023-06-23 09:25:35 -04:00
|
|
|
boot.initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi"];
|
|
|
|
boot.initrd.kernelModules = ["nvme"];
|
|
|
|
fileSystems."/" = {
|
|
|
|
device = "/dev/sda1";
|
|
|
|
fsType = "ext4";
|
|
|
|
};
|
|
|
|
}
|