chore: Add OPENGL settings

This commit is contained in:
Kourosh Tafreshi 2023-11-01 19:55:37 +02:00 committed by mergify[bot]
parent ce6068070b
commit 87f8403371
1 changed files with 16 additions and 12 deletions

View File

@ -1,15 +1,19 @@
{ lib, ... }:
{
imports = [
../default.nix
../../../../common/gpu/nvidia/prime.nix
];
{ lib,pkgs, ... }: {
imports = [ ../../../../common/gpu/nvidia/prime.nix ];
hardware.nvidia.prime = {
# Bus ID of the Intel GPU.
intelBusId = lib.mkDefault "PCI:0:2:0";
# Bus ID of the NVIDIA GPU.
nvidiaBusId = lib.mkDefault "PCI:1:0:0";
hardware = {
nvidia = {
prime = {
# Bus ID of the Intel GPU.
intelBusId = lib.mkDefault "PCI:0:2: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 ];
};
};
}