infrastructure/depot/profiles/hardware/intel/default.nix
2021-08-09 02:41:43 +01:00

13 lines
202 B
Nix

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