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