Files
nix/hosts/installer/hardware/default.nix
2025-08-18 13:35:08 -04:00

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;
}