mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-08 02:48:42 +08:00
15 lines
282 B
Nix
15 lines
282 B
Nix
{ lib, ... }:
|
|
{
|
|
imports = [
|
|
../../../common/gpu/nvidia
|
|
];
|
|
|
|
# or even better: boot.kernelParams = pkgs.linuxPackages_latest;
|
|
boot.kernelParams = [ "i915.force_probe=7d55" ];
|
|
|
|
hardware.nvidia.prime = {
|
|
intelBusId = "PCI:0:2:0";
|
|
nvidiaBusId = "PCI:1:0:0";
|
|
};
|
|
}
|