Add NVIDIA module
This commit is contained in:
		
							parent
							
								
									63c6be32cb
								
							
						
					
					
						commit
						80c85c28e9
					
				
					 2 changed files with 36 additions and 21 deletions
				
			
		
							
								
								
									
										33
									
								
								nixos/modules/hardware/nvidia.nix
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										33
									
								
								nixos/modules/hardware/nvidia.nix
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,33 @@
 | 
			
		|||
{ inputs, lib, config, pkgs, ... }:
 | 
			
		||||
 | 
			
		||||
let
 | 
			
		||||
  nvidia-offload = pkgs.writeShellScriptBin "nvidia-offload" ''
 | 
			
		||||
    export __NV_PRIME_RENDER_OFFLOAD=1
 | 
			
		||||
    export __NV_PRIME_RENDER_OFFLOAD_PROVIDER=NVIDIA-G0
 | 
			
		||||
    export __GLX_VENDOR_LIBRARY_NAME=nvidia
 | 
			
		||||
    export __VK_LAYER_NV_optimus=NVIDIA_only
 | 
			
		||||
    exec "$@"
 | 
			
		||||
  '';
 | 
			
		||||
in
 | 
			
		||||
{
 | 
			
		||||
  nixpkgs.config.allowUnfree = true;
 | 
			
		||||
 | 
			
		||||
  services.xserver.videoDrivers = [ "nvidia" ];
 | 
			
		||||
 | 
			
		||||
  hardware = {
 | 
			
		||||
    opengl.enable = true;
 | 
			
		||||
    nvidia = {
 | 
			
		||||
      open = true;
 | 
			
		||||
      package = config.boot.kernelPackages.nvidiaPackages.stable;
 | 
			
		||||
      modesetting.enable = true;
 | 
			
		||||
    };
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  # Offloading
 | 
			
		||||
  # environment.systemPackages = [ nvidia-offload ];
 | 
			
		||||
  # hardware.nvidia.prime = {
 | 
			
		||||
  #   offload.enable = true;
 | 
			
		||||
  #   intelBusId = "PCI::00:02:0";
 | 
			
		||||
  #   nvidiaBusId = "PCI:01:00:0";
 | 
			
		||||
  # };
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue