Compare commits

..

No commits in common. "5e3533c3448b662629597986ea140ade1ef9fa19" and "a6b23717ae536bfc45758d12e3b63a9ef3fb7346" have entirely different histories.

2 changed files with 0 additions and 39 deletions

View file

@ -43,7 +43,6 @@ in {
kid3
calibre
tidal-hifi
transmission_4-qt
# Messengers
element-desktop # Matrix Client
signal-desktop

View file

@ -44,42 +44,4 @@ in {
extraPackages = [ pkgs.intel-media-sdk ];
};
# Power Management
# services.tlp.enable = false;
# services.power-profiles-daemon.enable = false;
# services.auto-cpufreq.enable = true;
# services.auto-cpufreq.settings = {
# battery = {
# governor = "powersave";
# turbo = "never";
# };
# charger = {
# governor = "performance";
# turbo = "auto";
# };
# };
services.power-profiles-daemon.enable = false;
services.tlp = {
enable = true;
settings = {
CPU_SCALING_GOVERNOR_ON_AC = "performance";
CPU_SCALING_GOVERNOR_ON_BAT = "balanced";
CPU_ENERGY_PERF_POLICY_ON_BAT = "power";
CPU_ENERGY_PERF_POLICY_ON_AC = "performance";
CPU_MIN_PERF_ON_AC = 0;
CPU_MAX_PERF_ON_AC = 100;
CPU_MIN_PERF_ON_BAT = 0;
CPU_MAX_PERF_ON_BAT = 80;
#Optional helps save long term battery health
START_CHARGE_THRESH_BAT0 = 40; # 40 and bellow it starts to charge
STOP_CHARGE_THRESH_BAT0 = 80; # 80 and above it stops charging
};
};
}