Merge pull request #146 from Mic92/e495

thinkpad/e495: fix evaluation
This commit is contained in:
Jörg Thalheim
2020-02-12 10:58:44 +00:00
committed by GitHub

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;
}