26 lines
601 B
Nix
26 lines
601 B
Nix
{ pkgs, ... } @args: let
|
|
controlFile = "/sys/devices/system/cpu/cpufreq/boost";
|
|
enable = "0";
|
|
disable = "1";
|
|
|
|
script = pkgs.writeShellScriptBin "powersave" (import ./powersave/Script.nix {
|
|
inherit controlFile;
|
|
inherit enable;
|
|
inherit disable;
|
|
}).script;
|
|
in {
|
|
# Requirements:
|
|
# CPPC (Collaborative Power Control) - Disabled.
|
|
# PSS (Cool and Quiet) - Enabled.
|
|
imports = [
|
|
(import ./powersave ({
|
|
inherit controlFile;
|
|
inherit enable;
|
|
inherit disable;
|
|
} // args))
|
|
];
|
|
|
|
systemd.services.keyd.path = [ script ];
|
|
environment.systemPackages = [ script ];
|
|
}
|