flakes/hosts/alyssum/kernel.nix

11 lines
241 B
Nix
Raw Normal View History

2026-05-28 18:08:15 +10:00
{ ... }: {
boot = {
loader = {
efi.canTouchEfiVariables = true;
systemd-boot.enable = true;
};
initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" ];
initrd.kernelModules = [ "nvme" ];
};
}