nixos-config/modules/tlp.nix
Simon Bruder 20ef95691b
Disable tlp
Recalibrating my battery does not work and just breaks charging until
the battery is removed and plugged in again.
2020-09-11 22:47:40 +02:00

9 lines
160 B
Nix

{ config, ... }:
{
services.tlp.enable = true;
# Allow calibrating battery
boot.extraModulePackages = with config.boot.kernelPackages; [ acpi_call ];
}