mio-ops/profiles/powerManagement.nix

28 lines
577 B
Nix
Raw Normal View History

# Power management configuration for the laptops
{
2022-03-07 14:26:15 +00:00
config,
pkgs,
lib,
...
}: {
powerManagement = {
enable = true;
cpuFreqGovernor = lib.mkDefault "performance";
2021-11-16 04:57:23 +00:00
powertop.enable = true; # Enable powertop auto tuning on startup
};
services = {
2021-05-13 01:36:54 +00:00
logind = {
2021-11-24 23:38:48 +00:00
lidSwitch = "hibernate";
2021-09-03 11:55:08 +00:00
lidSwitchDocked = "ignore";
2021-05-13 01:36:54 +00:00
};
2021-06-04 00:32:51 +00:00
tlp.enable = false;
upower = {
2021-11-16 04:57:23 +00:00
enable = true; # Enable application power managemetn support
percentageCritical = 15;
percentageAction = 10;
criticalPowerAction = "Hibernate";
};
};
}