From 4d2317e6ebe3186989a7e7de7e7ccc7f92c97e90 Mon Sep 17 00:00:00 2001 From: "Ricardo M. Correia" Date: Thu, 19 Mar 2015 19:24:39 +0100 Subject: [PATCH] nixos/zfs: Don't default to git version for kernels >= 3.19 Stable version 0.6.3-1.3 works with kernels 3.19.x. --- nixos/modules/tasks/filesystems/zfs.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nixos/modules/tasks/filesystems/zfs.nix b/nixos/modules/tasks/filesystems/zfs.nix index 93782ffa4d5..1ac89c4c255 100644 --- a/nixos/modules/tasks/filesystems/zfs.nix +++ b/nixos/modules/tasks/filesystems/zfs.nix @@ -55,8 +55,7 @@ in boot.zfs = { useGit = mkOption { type = types.bool; - # TODO(wkennington): Revert when 0.6.4 is out - default = versionAtLeast config.boot.kernelPackages.kernel.version "3.19"; + default = false; example = true; description = '' Use the git version of the SPL and ZFS packages.