mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			308 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			308 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, lib, pkgs, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ../.
 | 
						|
    ../../../common/cpu/intel
 | 
						|
    ../../../common/pc/laptop/acpi_call.nix
 | 
						|
  ];
 | 
						|
 | 
						|
  boot = {
 | 
						|
    kernelParams = [
 | 
						|
      # fixes brightness keys, see https://wiki.archlinux.org/index.php/Lenovo_ThinkPad_T430s
 | 
						|
      "acpi_osi\='!Windows 2012'"
 | 
						|
    ];
 | 
						|
  };
 | 
						|
}
 |