22
0
mirror of https://github.com/SuperSandro2000/nixos-modules.git synced 2024-06-13 19:45:48 +02:00

zfs: stick to stable kernel

6.0.X has bugs for bind() which we already ran into
This commit is contained in:
Sandro - 2023-01-16 00:47:44 +01:00
parent e387e10335
commit 926b46de76
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -10,7 +10,10 @@ in
config = lib.mkIf (cfg.recommendedDefaults && cfg.enabled) {
boot = {
kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
# TODO: reactivate when this no longer points to 6.0 which has the following bug:
# https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/7VPNMC77YC3SI5LFYKUA4B5MTFPLTLVB/
# https://lore.kernel.org/stable/CAFsF8vL4CGFzWMb38_XviiEgxoKX0GYup=JiUFXUOmagdk9CRg@mail.gmail.com/
# kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
zfs.forceImportRoot = false;
};