mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			400 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			400 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ ... }:
 | 
						|
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ../../../common/cpu/amd
 | 
						|
    ../../../common/gpu/nvidia/prime.nix
 | 
						|
    ../../../common/pc/laptop
 | 
						|
    ../../../common/pc/ssd
 | 
						|
  ];
 | 
						|
 | 
						|
  hardware.nvidia.prime = {
 | 
						|
    amdgpuBusId = "PCI:7:0:0";
 | 
						|
    nvidiaBusId = "PCI:1:0:0";
 | 
						|
  };
 | 
						|
 | 
						|
  # fixes mic mute button
 | 
						|
  services.udev.extraHwdb = ''
 | 
						|
    evdev:name:*:dmi:bvn*:bvr*:bd*:svnASUS*:pn*:*
 | 
						|
     KEYBOARD_KEY_ff31007c=f20
 | 
						|
  '';
 | 
						|
}
 |