This commit is contained in:
2022-10-17 14:36:07 +02:00
commit e1f472a7ed
7 changed files with 358 additions and 0 deletions

23
nvidia-intel.nix Normal file
View File

@@ -0,0 +1,23 @@
{ config, pkgs, ... }:
{
###### intel igpu ########
boot.kernelPackages = pkgs.linuxPackages_latest;
hardware.opengl.enable = true;
hardware.opengl.extraPackages = [ pkgs.mesa.drivers ];
##### nvidia offloading ########
services.xserver.videoDrivers = [ "nvidia" ];
hardware.nvidia.prime = {
sync.enable = true;
# Bus ID of the NVIDIA GPU. You can find it using lspci, either under 3D or VGA
nvidiaBusId = "PCI:1:0:0";
# Bus ID of the Intel GPU. You can find it using lspci, either under 3D or VGA
intelBusId = "PCI:0:2:0";
};
}