nixos/udev: corrected assertion message

The assertion message had the incorrect version versus what the logic
was assessing for, it was been corrected.
This commit is contained in:
Michael Buckley
2025-12-28 22:12:45 -05:00
parent 18cf551cd7
commit 70a6602812
+1 -1
View File
@@ -410,7 +410,7 @@ in
config.hardware.firmwareCompression == "zstd" -> config.boot.kernelPackages.kernelAtLeast "5.19";
message = ''
The firmware compression method is set to zstd, but the kernel version is too old.
The kernel version must be at least 5.3 to use zstd compression.
The kernel version must be at least 5.19 to use zstd compression.
'';
}
{