16 lines
203 B
Nix
16 lines
203 B
Nix
{ ... }:
|
|
{
|
|
hardware.enableAllHardware = true;
|
|
|
|
boot.initrd.kernelModules = [
|
|
"nvme"
|
|
"ahci"
|
|
"usbhid"
|
|
"xhci_pci"
|
|
"usb_storage"
|
|
"sd_mod"
|
|
];
|
|
|
|
services.fstrim.enable = true;
|
|
}
|