mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 16:49:40 +01:00
13 lines
312 B
Nix
13 lines
312 B
Nix
{ config, lib, ... }:
|
|
{
|
|
imports = [
|
|
../../../common/gpu/nvidia/ada-lovelace
|
|
];
|
|
|
|
boot.kernelParams = lib.mkIf (lib.versionOlder config.boot.kernelPackages.kernel.version "6.7") [ "i915.force_probe=7d55" ];
|
|
|
|
hardware.nvidia.prime = {
|
|
intelBusId = "PCI:0:2:0";
|
|
nvidiaBusId = "PCI:1:0:0";
|
|
};
|
|
}
|