mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 09:17:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			496 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			496 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ../../../common/cpu/intel
 | 
						|
    ../../../common/pc/laptop
 | 
						|
  ];
 | 
						|
 | 
						|
  boot = {
 | 
						|
    initrd.kernelModules = [ "ata_piix" ];
 | 
						|
    kernelParams = [
 | 
						|
      "apm=on"
 | 
						|
      "acpi=on"
 | 
						|
      "vga=0x317"
 | 
						|
      "video=vesafb:ywrap"
 | 
						|
 | 
						|
      # Important, disable KMS to fix backlight regulation:
 | 
						|
      "nomodeset"
 | 
						|
    ];
 | 
						|
  };
 | 
						|
 | 
						|
  # TODO: reverse compat
 | 
						|
  hardware.opengl.driSupport = false;
 | 
						|
 | 
						|
  # TODO: reverse compat
 | 
						|
  services.xserver = {
 | 
						|
    defaultDepth = lib.mkDefault 24;
 | 
						|
  };
 | 
						|
}
 |