mirror of
https://github.com/ellmau/nixos.git
synced 2025-12-19 09:29:36 +01:00
Signed-off-by: Stefan Ellmauthaler <stefan.ellmauthaler@tu-dresden.de>
11 lines
197 B
Nix
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 ];
|
|
};
|
|
}
|