1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-09-20 13:27:22 +02:00
nixos-hardware/dell/xps/15-9550/nvidia/default.nix
2024-09-03 12:17:02 -06:00

16 lines
329 B
Nix

{ lib, ... }:
{
imports = [
../default.nix
../../../../common/gpu/nvidia/prime.nix
../../../../common/gpu/nvidia/maxwell
];
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";
};
}