mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 09:54:40 +02:00
22 lines
283 B
Nix
22 lines
283 B
Nix
_:
|
|
{
|
|
boot.initrd = {
|
|
availableKernelModules = [
|
|
"ahci"
|
|
"e1000e"
|
|
"ehci_pci"
|
|
"nvme"
|
|
"sd_mod"
|
|
"uas"
|
|
"usbhid"
|
|
"usb_storage"
|
|
"xhci_pci"
|
|
];
|
|
|
|
kernelModules = [
|
|
"dm-snapshot"
|
|
"e1000e"
|
|
"nvme"
|
|
];
|
|
};
|
|
}
|