infrastructure/config/profiles/hardware/intel.nix
2021-09-04 01:14:17 +01:00

13 lines
204 B
Nix

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