thinkpad/e495: fix evaluation

fixes #145
This commit is contained in:
Jörg Thalheim 2020-02-12 10:57:21 +00:00
parent 859cd11263
commit f5a4954ca3
No known key found for this signature in database
GPG Key ID: 003F2096411B5F92
1 changed files with 1 additions and 1 deletions

View File

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