1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-11-01 16:49:40 +01:00
nixos-hardware/dell/precision/5490/default.nix
2024-10-19 09:47:05 +00:00

15 lines
313 B
Nix

{ lib, ... }:
{
imports = [
../../../common/gpu/nvidia
];
# or even better: boot.kernelParams = pkgs.linuxPackages_latest;
boot.kernelParams = [ "i915.force_probe=7d55" ];
hardware.nvidia.open = true;
hardware.nvidia.prime = {
intelBusId = "PCI:0:2:0";
nvidiaBusId = "PCI:1:0:0";
};
}