hardware/laptop: power-profiles-daemon -> tlp

This commit is contained in:
Aly Raffauf 2024-06-27 16:48:16 -04:00 committed by Aly Raffauf
parent 4b083899e1
commit 71a606119c
2 changed files with 19 additions and 2 deletions

View file

@ -6,8 +6,26 @@
}: {
config = lib.mkIf config.ar.hardware.laptop {
services = {
power-profiles-daemon.enable = true;
power-profiles-daemon.enable = lib.mkDefault false;
upower.enable = true;
tlp = {
enable = !config.services.power-profiles-daemon.enable;
settings = {
BAY_POWEROFF_ON_AC = 0;
BAY_POWEROFF_ON_BAT = 1;
CPU_BOOST_ON_AC = 1;
CPU_BOOST_ON_BAT = 0;
CPU_ENERGY_PERF_POLICY_ON_AC = "balance_performance";
CPU_ENERGY_PERF_POLICY_ON_BAT = "power";
CPU_HWP_DYN_BOOST_ON_AC = 1;
CPU_HWP_DYN_BOOST_ON_BAT = 0;
PLATFORM_PROFILE_ON_AC = "balanced";
PLATFORM_PROFILE_ON_BAT = "low-power";
RESTORE_DEVICE_STATE_ON_STARTUP = 1;
TLP_DEFAULT_MODE = "AC";
TLP_PERSISTENT_DEFAULT = 0;
};
};
};
};
}

View file

@ -32,7 +32,6 @@
hardware = {
acpilight.enable = true;
enableAllFirmware = true;
sensor.iio.enable = true;
};