nix/module/IntelCpu.nix

38 lines
684 B
Nix
Raw Normal View History

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