zfs_2_2: fix latestCompatibleLinuxPackages

Broken in ba0d495264, which removed Linux
6.8 and 6.9, so now 6.6 is the latest compatible.
This commit is contained in:
Andrew Marshall
2024-08-14 11:05:55 -04:00
parent 29aa9e9b12
commit f8a1ba0e7d
+1 -1
View File
@@ -17,7 +17,7 @@ callPackage ./generic.nix args {
# check the release notes for compatible kernels
kernelCompatible = kernel.kernelOlder "6.10";
latestCompatibleLinuxPackages = linuxKernel.packages.linux_6_9;
latestCompatibleLinuxPackages = linuxKernel.packages.linux_6_6;
# this package should point to the latest release.
version = "2.2.5";