mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			222 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			222 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  imports = [ ../. ];
 | 
						|
 | 
						|
  boot = {
 | 
						|
    # Divides power consumption by two.
 | 
						|
    kernelParams = [ "acpi_osi=" ];
 | 
						|
  };
 | 
						|
 | 
						|
  services.xserver.deviceSection = lib.mkDefault ''
 | 
						|
    Option "TearFree" "true"
 | 
						|
  '';
 | 
						|
}
 |