1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-25 22:18:32 +02:00

Add NVIDIA config for Dell XPS 15 7590

This commit is contained in:
Ghislain Vaillant 2023-02-25 19:13:22 +01:00
parent 2d44015779
commit c37aed2394

View File

@ -0,0 +1,15 @@
{lib, ...}:
{
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";
};
}