Update lenovo/thinkpad/e495/default.nix

Co-Authored-By: Jörg Thalheim <Mic92@users.noreply.github.com>
This commit is contained in:
Luis Hebendanz 2020-02-12 10:52:49 +01:00 committed by GitHub
parent d75b12a962
commit f6e2381344
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -6,5 +6,6 @@
../../../common/cpu/amd
];
boot.kernelPackages = pkgs.linuxPackages_5_2;
# see https://github.com/NixOS/nixpkgs/issues/69289
boot.kernelPackages = lib.mkIf (lib.versionOlder linux.version "5.2") pkgs.linuxPackages_latest;
}