nix/module/IntelCpu.nix

36 lines
674 B
Nix
Raw Permalink 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 [
2024-10-14 04:51:19 +03:00
{ boot.kernelModules = [ "kvm-intel" ]; }
(mkIf cfg.powersave {
module.powersave = {
enable = true;
cpu.boost = {
inherit controlFile enableCmd disableCmd;
};
};
})
]);
}