infrastructure/config/profiles/hardware/intel/default.nix
2021-08-19 17:42:50 +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" ];
};
}