mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	Load acpi_call module only if tlp is being used
power-profiles-daemon cannot use acpi_call. This avoids taining the kernel by installing an unnecessary kernel module.
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