flakes/hosts/dandelion/kernel.nix

11 lines
241 B
Nix
Raw Permalink Normal View History

2025-05-19 19:43:57 +10:00
{ ... }: {
boot = {
loader = {
efi.canTouchEfiVariables = true;
systemd-boot.enable = true;
};
initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" ];
initrd.kernelModules = [ "nvme" ];
};
}