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

Better default for amdgpuBusId

This commit is contained in:
4JX 2024-01-28 01:25:14 +01:00 committed by mergify[bot]
parent ed01236ece
commit cc65e27670
2 changed files with 7 additions and 1 deletions

View File

@ -3,6 +3,12 @@ Due to the introduction of DDG feature, you may toggle DDG frequently, so for th
**But It will slow down NixOS evaluation by factor 2 and increase memory usage.** **But It will slow down NixOS evaluation by factor 2 and increase memory usage.**
So if you don't need specialization feature, you can just use hybrid only configuration or nvidia only (DDG only) configuration So if you don't need specialization feature, you can just use hybrid only configuration or nvidia only (DDG only) configuration
## Using multiple drives with this configuration
When using more than one drive, the value of `hardware.nvidia.prime.amdgpuBusId` will change from the default of `PCI:5:0:0`.
Make sure you override this default in your personal configuration. For two drives, it should be `PCI:6:0:0`.
## Setup at the time of testing ## Setup at the time of testing
``` ```
$ nix-info -m $ nix-info -m

View File

@ -28,7 +28,7 @@
powerManagement.enable = lib.mkDefault true; powerManagement.enable = lib.mkDefault true;
prime = { prime = {
amdgpuBusId = "PCI:6:0:0"; amdgpuBusId = lib.mkDefault "PCI:5:0:0";
nvidiaBusId = "PCI:1:0:0"; nvidiaBusId = "PCI:1:0:0";
}; };
}; };