Dell XPS 9560: Add information and tweak config

This commit is contained in:
Lyndon Sanche
2023-08-09 12:38:17 -06:00
committed by Jörg Thalheim
parent 7f1836531b
commit 4cc314ad67
5 changed files with 30 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
{ lib, ... }:
{ ... }:
{
imports = [
@@ -14,9 +14,9 @@
##### disable intel, run nvidia only and as default
hardware.nvidia.prime = {
# Bus ID of the Intel GPU.
intelBusId = lib.mkDefault "PCI:0:2:0";
intelBusId = "PCI:0:2:0";
# Bus ID of the NVIDIA GPU.
nvidiaBusId = lib.mkDefault "PCI:1:0:0";
nvidiaBusId = "PCI:1:0:0";
};
}