mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			372 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			372 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  imports = [
 | 
						|
    ../.
 | 
						|
    ../../../common/cpu/intel
 | 
						|
    ../../../common/pc/laptop/acpi_call.nix
 | 
						|
  ];
 | 
						|
 | 
						|
  boot.kernelParams = [
 | 
						|
    # https://wiki.archlinux.org/index.php/Lenovo_ThinkPad_X260#Thinkpad_X260
 | 
						|
    "i915.enable_psr=0"
 | 
						|
  ];
 | 
						|
 | 
						|
  # https://wiki.archlinux.org/index.php/TLP#Btrfs
 | 
						|
  services.tlp.settings = {
 | 
						|
    SATA_LINKPWR_ON_BAT = "med_power_with_dipm";
 | 
						|
  };
 | 
						|
}
 |