nix/config/IntelCpu.nix

29 lines
469 B
Nix
Raw Normal View History

# Intel CPU specific configuration.
{
2024-11-04 04:37:29 +03:00
config,
lib,
...
}: let
cfg = config.module.intel.cpu;
2024-06-25 04:04:39 +03:00
2024-11-04 04:37:29 +03:00
controlFile = "/sys/devices/system/cpu/intel_pstate/no_turbo";
disableCmd = "0";
enableCmd = "1";
in {
config = lib.mkIf cfg.enable (lib.mkMerge [
{
boot.kernelModules = [
"kvm-intel"
];
}
(lib.mkIf cfg.powersave {
module.powersave = {
enable = true;
cpu.boost = {
inherit controlFile enableCmd disableCmd;
};
};
})
]);
}