fix lenovo thinkpad e470

This commit is contained in:
Vincent Cui 2020-09-23 20:08:23 +02:00
parent 9bc1f316a6
commit b175484c5a
1 changed files with 9 additions and 1 deletions

View File

@ -4,8 +4,16 @@
imports = [
../.
../../../common/cpu/intel/kaby-lake
../../../common/gpu/nvidia.nix
];
# see https://github.com/NixOS/nixpkgs/issues/69289
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";
};
boot.kernelPackages = pkgs.linuxPackages_latest;
}