nixfiles/nixos/profiles/laptop/power-profiles-daemon.nix
2024-03-07 17:05:22 -08:00

12 lines
285 B
Nix

_: {
services.power-profiles-daemon.enable = false;
services.tlp = {
enable = true;
settings = {
CPU_BOOST_ON_AC = 1;
CPU_BOOST_ON_BAT = 0;
CPU_SCALING_GOVERNOR_ON_AC = "performance";
CPU_SCALING_GOVERNOR_ON_BAT = "powersave";
};
};
}