mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 09:17:14 +08:00 
			
		
		
		
	- Disable power-saving for the keyboard on the Asus Zephyrus GA402X series (2023) - Add more-aggressive roaming rules for Asus Mediatek cards when using IWD - Add note about potentially needing more-aggressive roaming rules for Asus Mediatek cards when using WPA-Supplicant - Make enabling the higher scanning optional - Split-up the AMD-GPU and Nvidia configs - Add switch for AMD-GPU recovery mode - Add switch for AMD-GPU sg_display (Scatter/Gather) mode - Add switch for AMD-GPU PSR support
		
			
				
	
	
		
			16 lines
		
	
	
		
			313 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			313 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
## When using from a Flake, you can access these via imports of the attr key, e.g:
 | 
						|
#
 | 
						|
# imports = [
 | 
						|
#   nixos-hardware.nixosModules.asus-zephyrus-ga402x.amdgpu
 | 
						|
# ];
 | 
						|
#
 | 
						|
## or:
 | 
						|
# imports = [
 | 
						|
#   nixos-hardware.nixosModules.asus-zephyrus-ga402x.nvidia
 | 
						|
# ];
 | 
						|
 | 
						|
{
 | 
						|
  amdgpu = import ./amdgpu;
 | 
						|
  nvidia = import ./nvidia;
 | 
						|
}
 |