1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 11:03:33 +02:00

Fixed error

This commit is contained in:
Emre Cebi 2024-05-16 17:26:59 +02:00 committed by mergify[bot]
parent 9f7302060c
commit d68be3e5e2

View File

@ -35,11 +35,13 @@
};
};
hardware.nvidia.prime = {
hardware.nvidia = {
modesetting.enable = lib.mkDefault true;
open = lib.mkDefault false;
nvidiaSettings = lib.mkDefault true;
amdgpuBusId = "PCI:54:0:0";
nvidiaBusId = "PCI:1:0:0";
prime = {
amdgpuBusId = "PCI:54:0:0";
nvidiaBusId = "PCI:1:0:0";
};
};
}