nixos/modules/tlp/default.nix

11 lines
209 B
Nix
Raw Normal View History

2022-05-27 13:15:15 +02:00
{ ... }:
{
services.tlp = {
enable = true;
settings = {
DEVICES_TO_DISABLE_ON_STARTUP = "bluetooth wifi wwan";
DEVICES_TO_DISABLE_ON_BAT_NOT_IN_USE = "bluetooth wifi wwan";
};
};
}