nix/hosts/prefect/bootloader.nix

18 lines
358 B
Nix
Raw Normal View History

{
pkgs,
lib,
modulesPath,
...
}: {
2022-07-16 02:05:23 +00:00
imports = [(modulesPath + "/profiles/qemu-guest.nix")];
boot = {
cleanTmpDir = true;
loader = {
grub.device = "/dev/sda";
};
2022-07-16 02:05:23 +00:00
initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "xen_blkfront"];
initrd.kernelModules = ["nvme"];
kernelPackages = pkgs.linuxPackages_latest;
};
}