mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-05 01:37:24 +08:00
Merge #603
603: Load acpi_call module only if tlp is being used r=Mic92 a=xfix Co-authored-by: Konrad Borowski <konrad@borowski.pw>
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
# acpi_call makes tlp work for newer thinkpads
|
||||
|
||||
{ config, ... }:
|
||||
{ config, lib, ... }:
|
||||
|
||||
{
|
||||
boot = {
|
||||
boot = lib.mkIf config.services.tlp.enable {
|
||||
kernelModules = [ "acpi_call" ];
|
||||
extraModulePackages = with config.boot.kernelPackages; [ acpi_call ];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user