diff --git a/modules/tlp.nix b/modules/tlp.nix index 4522cfc..64c0b27 100644 --- a/modules/tlp.nix +++ b/modules/tlp.nix @@ -1,3 +1,8 @@ +{ config, ... }: + { services.tlp.enable = true; + + # Allow calibrating battery + boot.extraModulePackages = with config.boot.kernelPackages; [ acpi_call ]; } diff --git a/profiles/laptop.nix b/profiles/laptop.nix index dbe185b..44d86ad 100644 --- a/profiles/laptop.nix +++ b/profiles/laptop.nix @@ -3,6 +3,6 @@ { imports = [ - ../modules/tlp.nix + #../modules/tlp.nix ]; }