mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 01:07:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			331 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			331 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, lib, pkgs, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ../.
 | 
						|
    ../../../common/pc/laptop/ssd
 | 
						|
    ../../../common/pc/laptop/acpi_call.nix
 | 
						|
  ];
 | 
						|
 | 
						|
  boot.kernelParams = [
 | 
						|
    # Force use of the thinkpad_acpi driver for backlight control.
 | 
						|
    # This allows the backlight save/load systemd service to work.
 | 
						|
    "acpi_backlight=native"
 | 
						|
  ];
 | 
						|
}
 |