1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 19:13:33 +02:00
nixos-hardware/lenovo/thinkpad/acpi_call.nix
Michael Peyton Jones cbdcc55f37 Add acpi_call module
2018-06-08 23:54:25 +01:00

11 lines
197 B
Nix

# acpi_call makes tlp work for newer thinkpads
{ config, ... }:
{
boot = {
kernelModules = [ "acpi_call" ];
extraModulePackages = with config.boot.kernelPackages; [ acpi_call ];
};
}