2024-12-23 11:20:27 -06:00
|
|
|
{ modulesPath, ... }:
|
|
|
|
{
|
|
|
|
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
|
|
|
|
boot.loader.grub = {
|
|
|
|
efiSupport = true;
|
|
|
|
efiInstallAsRemovable = true;
|
|
|
|
device = "nodev";
|
|
|
|
};
|
2025-07-18 10:28:34 -04:00
|
|
|
fileSystems."/boot" = {
|
|
|
|
device = "/dev/disk/by-uuid/FAAB-A09E";
|
|
|
|
fsType = "vfat";
|
|
|
|
};
|
|
|
|
boot.initrd.availableKernelModules = [
|
|
|
|
"ata_piix"
|
|
|
|
"uhci_hcd"
|
|
|
|
"xen_blkfront"
|
|
|
|
"vmw_pvscsi"
|
|
|
|
];
|
2024-12-23 11:20:27 -06:00
|
|
|
boot.initrd.kernelModules = [ "nvme" ];
|
2025-07-18 10:28:34 -04:00
|
|
|
fileSystems."/" = {
|
|
|
|
device = "/dev/sda1";
|
|
|
|
fsType = "ext4";
|
|
|
|
};
|
|
|
|
|
2024-12-23 11:20:27 -06:00
|
|
|
}
|