nix-config/modules/tlp.nix

11 lines
241 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;
services.tlp.enable = true;
services.tlp.extraConfig = ''
USB_BLACKLIST="1d50:604b 1d50:6089 1d50:cc15 1fc9:000c"
'';
}