mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
14 lines
330 B
Nix
14 lines
330 B
Nix
|
{ lib, pkgs, ... }:
|
||
|
{
|
||
|
hardware.nvidia.modesetting.enable = true;
|
||
|
hardware.opengl.driSupport32Bit = true;
|
||
|
hardware.opengl.enable = true;
|
||
|
|
||
|
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";
|
||
|
};
|
||
|
}
|