mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
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 ];
|
||
|
};
|
||
|
}
|