Revert "Replace TLP with auto-cpufreq"

This reverts commit cf92337f0b.
This commit is contained in:
coolneng 2022-12-03 18:50:36 +01:00
parent cba0214a03
commit e0343322ad
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
1 changed files with 10 additions and 3 deletions

View File

@ -1,13 +1,20 @@
{ config, lib, pkgs, ... }:
{
# Enable the auto-cpufreq daemon
services.auto-cpufreq.enable = true;
# Enable the TLP daemon
services.tlp = {
enable = true;
settings = {
# Use the new CPU frequency scaling governor
CPU_SCALING_GOVERNOR_ON_AC = "schedutil";
CPU_SCALING_GOVERNOR_ON_BAT = "schedutil";
# Adjust CPU frequencies accordingly to the power state
CPU_SCALING_MIN_FREQ_ON_AC = 800000;
CPU_SCALING_MAX_FREQ_ON_AC = 3000000;
CPU_SCALING_MIN_FREQ_ON_BAT = 800000;
CPU_SCALING_MAX_FREQ_ON_BAT = 2300000;
# Enable audio power saving for Intel HDA, AC97 devices (timeout in secs).
# A value of 0 disables, >=1 enables power saving (recommended: 1).
# Default: 0 (AC), 1 (BAT)