1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-09-20 13:27:22 +02:00
nixos-hardware/lenovo/thinkpad/p14s/intel/gen3/default.nix

18 lines
243 B
Nix
Raw Normal View History

2024-08-04 11:04:22 +02:00
{ lib, pkgs, ... }:
{
imports = [
../.
../../../../../common/gpu/nvidia/prime.nix
];
hardware = {
intelgpu.driver = "xe";
nvidia.prime = {
intelBusId = "PCI:0:2:0";
nvidiaBusId = "PCI:3:0:0";
};
};
}