17 lines
373 B
Nix
Executable file
17 lines
373 B
Nix
Executable file
{
|
|
lib,
|
|
config,
|
|
...
|
|
}: let
|
|
cfg = config.myFlake.nixos.hardware.cpu.intel;
|
|
in {
|
|
options = {
|
|
myFlake.nixos.hardware.cpu.intel.enable = lib.mkEnableOption "Whether to enable Intel CPU.";
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
boot.kernelModules = ["kvm-intel"];
|
|
hardware.cpu.intel.updateMicrocode = true;
|
|
nixpkgs.hostPlatform = "x86_64-linux";
|
|
};
|
|
}
|