10 lines
241 B
Nix
10 lines
241 B
Nix
{ ... }: {
|
|
boot = {
|
|
loader = {
|
|
efi.canTouchEfiVariables = true;
|
|
systemd-boot.enable = true;
|
|
};
|
|
initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" ];
|
|
initrd.kernelModules = [ "nvme" ];
|
|
};
|
|
}
|