about summary refs log tree commit diff
path: root/nixos/modules/tasks/filesystems
diff options
context:
space:
mode:
authorAndrew Marshall <andrew@johnandrewmarshall.com>2024-02-27 18:27:39 -0500
committerAndrew Marshall <andrew@johnandrewmarshall.com>2024-02-27 18:45:55 -0500
commit929fcf93358a833003435c0f74b9bd993f9546d0 (patch)
tree3a50972b3cacc22ec62efe2f6f9ebf7034739e78 /nixos/modules/tasks/filesystems
parentce5b1e007e1eb96e5df296e33ed884b70dc19250 (diff)
zfs_unstable: Rename from zfsUnstable
This matches the naming of other zfs_* pkgs.
Diffstat (limited to 'nixos/modules/tasks/filesystems')
-rw-r--r--nixos/modules/tasks/filesystems/zfs.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/tasks/filesystems/zfs.nix b/nixos/modules/tasks/filesystems/zfs.nix
index 6939a01d65897..b5caa4d29fa97 100644
--- a/nixos/modules/tasks/filesystems/zfs.nix
+++ b/nixos/modules/tasks/filesystems/zfs.nix
@@ -219,9 +219,9 @@ in
     boot.zfs = {
       package = mkOption {
         type = types.package;
-        default = if cfgZfs.enableUnstable then pkgs.zfsUnstable else pkgs.zfs;
-        defaultText = literalExpression "if enableUnstable is enabled then pkgs.zfsUnstable else pkgs.zfs";
-        description = lib.mdDoc "Configured ZFS userland tools package, use `pkgs.zfsUnstable` if you want to track the latest staging ZFS branch.";
+        default = if cfgZfs.enableUnstable then pkgs.zfs_unstable else pkgs.zfs;
+        defaultText = literalExpression "if enableUnstable is enabled then pkgs.zfs_unstable else pkgs.zfs";
+        description = lib.mdDoc "Configured ZFS userland tools package, use `pkgs.zfs_unstable` if you want to track the latest staging ZFS branch.";
       };
 
       modulePackage = mkOption {