nix-config/modules/tlp.nix

15 lines
350 B
Nix
Raw Normal View History

2022-05-25 19:27:42 +02:00
{ config, pkgs, ... }:
{
powerManagement.cpuFreqGovernor = null;
services.power-profiles-daemon.enable = false;
2022-06-11 23:28:31 +02:00
services.tlp = {
2022-05-29 05:00:18 +02:00
enable = true;
settings = {
2022-06-11 23:28:31 +02:00
USB_BLACKLIST = "1d50:604b 1d50:6089 1d50:cc15 1fc9:000c";
2022-07-18 01:05:56 +02:00
CPU_SCALING_GOVERNOR_ON_AC = "performance";
CPU_SCALING_GOVERNOR_ON_BAT = "powersave";
2022-05-29 05:00:18 +02:00
};
};
2022-05-25 19:27:42 +02:00
}