mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			212 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			212 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, config, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  imports = [ ./. ];
 | 
						|
 | 
						|
  hardware.nvidia.prime = {
 | 
						|
    # For people who want to use sync instead of offload. Especially for AMD CPU users
 | 
						|
    sync.enable = lib.mkOverride 990 true;
 | 
						|
  };
 | 
						|
}
 |