mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08: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 ];
 | 
						|
  };
 | 
						|
}
 |