infrastructure/config/profiles/hardware/intel.nix
2022-07-10 13:58:29 -07:00

15 lines
250 B
Nix

{ config, ... }:
/*
This hardware profile corresponds to any machine which has an Intel processor.
*/
{
deploy.profile.hardware.intel = true;
hardware.cpu.intel.updateMicrocode = true;
boot = {
kernelModules = [ "kvm-intel" ];
};
}