1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-09-20 05:17:22 +02:00
nixos-hardware/lenovo/thinkpad/p14s/intel/gen3/default.nix
2024-08-24 10:14:34 +00:00

17 lines
243 B
Nix

{ lib, pkgs, ... }:
{
imports = [
../.
../../../../../common/gpu/nvidia/prime.nix
];
hardware = {
intelgpu.driver = "xe";
nvidia.prime = {
intelBusId = "PCI:0:2:0";
nvidiaBusId = "PCI:3:0:0";
};
};
}