mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 18:04:41 +02:00
20 lines
263 B
Nix
20 lines
263 B
Nix
_: {
|
|
boot.initrd = {
|
|
availableKernelModules = [
|
|
"ahci"
|
|
"e1000e"
|
|
"ehci_pci"
|
|
"nvme"
|
|
"sd_mod"
|
|
"uas"
|
|
"usbhid"
|
|
"usb_storage"
|
|
"xhci_pci"
|
|
];
|
|
|
|
kernelModules = [
|
|
"e1000e"
|
|
"nvme"
|
|
];
|
|
};
|
|
}
|