1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-09-19 21:07:23 +02:00

surface: fix isVersionOf check

This commit is contained in:
Majiir Paktu 2024-07-24 21:47:52 -04:00 committed by mergify[bot]
parent a7432ebaef
commit 39ac67a5fe

View file

@ -48,7 +48,7 @@ let
isVersionOf = kernelVersion: version: isVersionOf = kernelVersion: version:
# Test if the provided version is considered one of the list of versions from above: # Test if the provided version is considered one of the list of versions from above:
elem version (versionsOf version); elem kernelVersion (versionsOf version);
in { in {
inherit linuxPackage repos surfacePatches versionsOf isVersionOf versionsOfEnum; inherit linuxPackage repos surfacePatches versionsOf isVersionOf versionsOfEnum;