mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-23 11:29:42 +01:00
Copy NVidia 9500 NVidia settings for 9550
This commit is contained in:
parent
c242378e63
commit
6484d285c5
2 changed files with 23 additions and 1 deletions
|
@ -5,12 +5,19 @@ Most of this I presume also applies to the XPS 13 1530, the 13" variant.
|
||||||
== Tested Hardware ==
|
== Tested Hardware ==
|
||||||
|
|
||||||
* CPU: Intel(R) Core(TM) i7-6700HQ CPU @ 2.60GHz
|
* CPU: Intel(R) Core(TM) i7-6700HQ CPU @ 2.60GHz
|
||||||
* RAM: 16 GB
|
* RAM: 32 GB
|
||||||
* HDD: 512 GiB SSD
|
* HDD: 512 GiB SSD
|
||||||
* Screen: 15" 4k (3840✕2160)
|
* Screen: 15" 4k (3840✕2160)
|
||||||
* Graphics: NVIDIA Corporation GM107M, with Intel Graphics too.
|
* Graphics: NVIDIA Corporation GM107M, with Intel Graphics too.
|
||||||
* Input: Touchscreen and trackpad.
|
* Input: Touchscreen and trackpad.
|
||||||
|
|
||||||
|
== NVIDIA Offload ==
|
||||||
|
|
||||||
|
In order to run a program on the NVIDIA gpu, you can use the `nvidia-offload` function, for example:
|
||||||
|
```
|
||||||
|
nvidia-offload `nix-shell -p glxinfo --run 'glxgears'`
|
||||||
|
```
|
||||||
|
This is a short bash script that sets the proper environment variables and calls your command.
|
||||||
|
|
||||||
== Firmware Configuration ==
|
== Firmware Configuration ==
|
||||||
|
|
||||||
|
|
15
dell/xps/15-9550/nvidia/default.nix
Normal file
15
dell/xps/15-9550/nvidia/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{ lib, pkgs, ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
../default.nix
|
||||||
|
../../../../common/gpu/nvidia.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";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue