mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	chore: Add OPENGL settings
This commit is contained in:
		
				
					committed by
					
						
						mergify[bot]
					
				
			
			
				
	
			
			
			
						parent
						
							ce6068070b
						
					
				
				
					commit
					87f8403371
				
			@@ -1,15 +1,19 @@
 | 
				
			|||||||
{ lib, ... }:
 | 
					{ lib,pkgs, ... }: {
 | 
				
			||||||
{
 | 
					  imports = [ ../../../../common/gpu/nvidia/prime.nix ];
 | 
				
			||||||
  imports = [
 | 
					 | 
				
			||||||
    ../default.nix
 | 
					 | 
				
			||||||
    ../../../../common/gpu/nvidia/prime.nix
 | 
					 | 
				
			||||||
  ];
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  hardware.nvidia.prime = {
 | 
					  hardware = {
 | 
				
			||||||
    # Bus ID of the Intel GPU.
 | 
					    nvidia = {
 | 
				
			||||||
    intelBusId = lib.mkDefault "PCI:0:2:0";
 | 
					      prime = {
 | 
				
			||||||
 | 
					        # Bus ID of the Intel GPU.
 | 
				
			||||||
    # Bus ID of the NVIDIA GPU.
 | 
					        intelBusId = lib.mkDefault "PCI:0:2:0";
 | 
				
			||||||
    nvidiaBusId = lib.mkDefault "PCI:1:0:0";
 | 
					        # Bus ID of the NVIDIA GPU.
 | 
				
			||||||
 | 
					        nvidiaBusId = lib.mkDefault "PCI:1:0:0";
 | 
				
			||||||
 | 
					      };
 | 
				
			||||||
 | 
					    };
 | 
				
			||||||
 | 
					    opengl = {
 | 
				
			||||||
 | 
					      enable = lib.mkDefault true;
 | 
				
			||||||
 | 
					      driSupport32Bit = lib.mkDefault true;
 | 
				
			||||||
 | 
					      extraPackages = with pkgs; [ intel-media-driver intel-compute-runtime ];
 | 
				
			||||||
 | 
					    };
 | 
				
			||||||
  };
 | 
					  };
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user