mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 16:49:40 +01:00
16 lines
328 B
Nix
16 lines
328 B
Nix
{ lib, ... }:
|
|
{
|
|
imports = [
|
|
../default.nix
|
|
../../../../common/gpu/nvidia/prime.nix
|
|
../../../../common/gpu/nvidia/ampere
|
|
];
|
|
|
|
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";
|
|
};
|
|
}
|