nixos/modules/boot/chn-PC.nix
2023-06-05 21:53:13 +08:00

16 lines
393 B
Nix

inputs:
{
config =
{
boot =
{
initrd.availableKernelModules
= [ "ahci" "nvme" "sr_mod" "usb_storage" "virtio_blk" "virtio_pci" "xhci_pci" ];
kernelModules = [ "kvm-intel" ];
extraModulePackages = with inputs.config.boot.kernelPackages; [ cpupower xone xpadneo ];
extraModprobeConfig = "options kvm_intel nested=1";
};
hardware.cpu.intel.updateMicrocode = true;
};
}