From c8ab60c2098cda8506175b7a8afa4a9a5abdfcb9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= <joerg@thalheim.io>
Date: Tue, 8 Jun 2021 11:10:16 +0200
Subject: [PATCH] fix eval

---
 roles/zfs.nix | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/roles/zfs.nix b/roles/zfs.nix
index cc45ece..dc34b1e 100644
--- a/roles/zfs.nix
+++ b/roles/zfs.nix
@@ -4,7 +4,7 @@
     # defaults to 12, which is a bit much given how much data is written
     autoSnapshot.monthly = 1;
     autoScrub.enable = true;
-    # zfs is not available for latest lts
-    enableUnstable = true;
   };
+  # zfs is not available for latest lts kenrel
+  boot.zfs.enableUnstable = true;
 }