mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
22 lines
492 B
Nix
22 lines
492 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../../../common/cpu/intel
|
|
../../../../common/gpu/nvidia/prime.nix
|
|
../../../../common/pc/laptop
|
|
../xps-common.nix
|
|
];
|
|
|
|
|
|
# This runs only nvidia, great for games or heavy use of render applications
|
|
|
|
##### disable intel, run nvidia only and as default
|
|
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";
|
|
};
|
|
}
|