12 lines
362 B
Nix
12 lines
362 B
Nix
{ config, ... }:
|
|
{
|
|
nixpkgs.hostPlatform = "x86_64-linux";
|
|
|
|
hardware.enableRedistributableFirmware = true;
|
|
|
|
boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "vmd" "nvme" "usb_storage" "sd_mod" "rtsx_usb_sdmmc" ];
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
|
|
hardware.cpu.intel.updateMicrocode = config.hardware.enableRedistributableFirmware;
|
|
}
|