mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
10 lines
197 B
Nix
10 lines
197 B
Nix
# acpi_call makes tlp work for newer thinkpads
|
|
|
|
{ config, ... }:
|
|
|
|
{
|
|
boot = {
|
|
kernelModules = [ "acpi_call" ];
|
|
extraModulePackages = with config.boot.kernelPackages; [ acpi_call ];
|
|
};
|
|
}
|