2022-12-31 11:52:38 +01:00
|
|
|
{ lib, pkgs, ... }:
|
2020-09-23 08:01:20 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
../.
|
2024-10-10 19:04:47 +02:00
|
|
|
../../../common/cpu/intel/kaby-lake
|
2022-11-13 02:54:59 +01:00
|
|
|
../../../common/gpu/nvidia/prime.nix
|
2024-09-04 19:21:16 +02:00
|
|
|
../../../common/gpu/nvidia/maxwell
|
2020-09-23 08:01:20 +02:00
|
|
|
];
|
|
|
|
|
2020-09-23 20:08:23 +02:00
|
|
|
hardware.nvidia.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";
|
|
|
|
};
|
|
|
|
|
2020-10-01 07:54:29 +02:00
|
|
|
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.6") pkgs.linuxPackages_latest;
|
2020-09-23 08:01:20 +02:00
|
|
|
}
|