mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-16 16:09:40 +01:00
19 lines
496 B
Nix
19 lines
496 B
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";
|
|
};
|
|
};
|
|
opengl = {
|
|
enable = lib.mkDefault true;
|
|
driSupport32Bit = lib.mkDefault true;
|
|
extraPackages = with pkgs; [ intel-media-driver intel-compute-runtime ];
|
|
};
|
|
};
|
|
}
|