Compare commits
2 Commits
94f49f4a3a
...
2b5176c6f0
Author | SHA1 | Date |
---|---|---|
coolneng | 2b5176c6f0 | |
coolneng | e0343322ad |
|
@ -1,13 +1,20 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
# Enable the auto-cpufreq daemon
|
|
||||||
services.auto-cpufreq.enable = true;
|
|
||||||
|
|
||||||
# Enable the TLP daemon
|
# Enable the TLP daemon
|
||||||
services.tlp = {
|
services.tlp = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
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).
|
# Enable audio power saving for Intel HDA, AC97 devices (timeout in secs).
|
||||||
# A value of 0 disables, >=1 enables power saving (recommended: 1).
|
# A value of 0 disables, >=1 enables power saving (recommended: 1).
|
||||||
# Default: 0 (AC), 1 (BAT)
|
# Default: 0 (AC), 1 (BAT)
|
||||||
|
@ -32,25 +39,6 @@
|
||||||
SUBSYSTEM=="power_supply", ATTR{status}=="Discharging", ATTR{model_name}=="01AV405", ATTR{capacity}=="[0-5]", RUN+="${config.systemd.package}/bin/systemctl suspend -i"
|
SUBSYSTEM=="power_supply", ATTR{status}=="Discharging", ATTR{model_name}=="01AV405", ATTR{capacity}=="[0-5]", RUN+="${config.systemd.package}/bin/systemctl suspend -i"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
# Enable thinkfan
|
|
||||||
services.thinkfan = {
|
|
||||||
enable = true;
|
|
||||||
levels = [
|
|
||||||
[ 0 0 47 ]
|
|
||||||
[ 1 47 69 ]
|
|
||||||
[ 2 69 74 ]
|
|
||||||
[ 3 74 78 ]
|
|
||||||
[ 4 78 82 ]
|
|
||||||
[ 5 82 85 ]
|
|
||||||
[ 6 85 87 ]
|
|
||||||
[ 7 87 32767 ]
|
|
||||||
];
|
|
||||||
};
|
|
||||||
# HACK Workaround to enable the service the first time
|
|
||||||
systemd.services.thinkfan.preStart = ''
|
|
||||||
/run/current-system/sw/bin/modprobe -r thinkpad_acpi && /run/current-system/sw/bin/modprobe thinkpad_acpi
|
|
||||||
'';
|
|
||||||
|
|
||||||
# Undervolt CPU and GPU
|
# Undervolt CPU and GPU
|
||||||
services.undervolt = {
|
services.undervolt = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in New Issue