AquaticOS/modules/system/hardware/intelcpu.nix

7 lines
No EOL
175 B
Nix

{ ... }:
{
flake.modules.nixos.intelcpu = {
hardware.cpu.intel.updateMicrocode = true;
boot.kernelModules = [ "kvm-intel" ]; # optional, same reasoning as amd
};
}