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/p1/3th-gen/nvidia.nix

22 lines
462 B
Nix
Raw Normal View History

2022-12-31 11:52:38 +01:00
{ lib, ... }:
{
2024-06-21 23:26:44 +02:00
imports = [
../../../../common/gpu/24.05-compat.nix
];
2024-06-21 15:44:42 +02:00
hardware = {
graphics = {
enable = lib.mkDefault true;
enable32Bit = lib.mkDefault true;
};
nvidia = {
modesetting.enable = lib.mkDefault true;
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";
};
};
};
}