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

20 lines
426 B
Nix
Raw Normal View History

2022-12-31 05:52:38 -05:00
{ lib, pkgs, ... }:
2020-09-23 02:01:20 -04:00
{
imports = [
../.
../../../common/gpu/intel/kaby-lake
../../../common/gpu/nvidia/prime.nix
2020-09-23 02:01:20 -04:00
];
2020-09-23 14:08:23 -04: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 01:54:29 -04:00
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.6") pkgs.linuxPackages_latest;
2020-09-23 02:01:20 -04:00
}