chore: Add OPENGL settings
This commit is contained in:
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 ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue