18 lines
245 B
Nix
18 lines
245 B
Nix
{ ... }:
|
|
{
|
|
hardware.enableAllFirmware = true;
|
|
|
|
boot.initrd.kernelModules = [
|
|
"nvme"
|
|
"ahci"
|
|
"usbhid"
|
|
"xhci_pci"
|
|
"usb_storage"
|
|
"sd_mod"
|
|
];
|
|
|
|
nixpkgs.hostPlatform = "x86_64-linux";
|
|
|
|
services.fstrim.enable = true;
|
|
}
|