drop acpi_call from nixos-hardware

fixes https://github.com/NixOS/nixos-hardware/issues/1114 and tlp also
no longer recommands it.
This commit is contained in:
Jörg Thalheim
2024-12-02 12:29:38 +01:00
parent fe01780d35
commit c6c90887f8
56 changed files with 5 additions and 68 deletions

View File

@@ -1,10 +0,0 @@
# acpi_call makes tlp work for newer thinkpads
{ config, lib, ... }:
{
boot = lib.mkIf config.services.tlp.enable {
kernelModules = [ "acpi_call" ];
extraModulePackages = with config.boot.kernelPackages; [ acpi_call ];
};
}