Disable tlp

Recalibrating my battery does not work and just breaks charging until
the battery is removed and plugged in again.
This commit is contained in:
Simon Bruder 2020-09-11 22:47:40 +02:00
parent b36df78a29
commit 20ef95691b
No known key found for this signature in database
GPG key ID: 6F03E0000CC5B62F
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
{ config, ... }:
{ {
services.tlp.enable = true; services.tlp.enable = true;
# Allow calibrating battery
boot.extraModulePackages = with config.boot.kernelPackages; [ acpi_call ];
} }

View file

@ -3,6 +3,6 @@
{ {
imports = imports =
[ [
../modules/tlp.nix #../modules/tlp.nix
]; ];
} }