nixos-hardware/lenovo/thinkpad/e470/default.nix

20 lines
428 B
Nix
Raw Normal View History

2020-09-23 06:01:20 +00:00
{ config, lib, pkgs, ... }:
{
imports = [
../.
2020-09-23 06:06:47 +00:00
../../../common/cpu/intel/kaby-lake
2020-09-23 18:08:23 +00:00
../../../common/gpu/nvidia.nix
2020-09-23 06:01:20 +00:00
];
2020-09-23 18:08:23 +00: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 05:54:29 +00:00
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.6") pkgs.linuxPackages_latest;
2020-09-23 06:01:20 +00:00
}