about summary refs log tree commit diff
path: root/nixos/modules/tasks
diff options
context:
space:
mode:
authorAndrew Marshall <andrew@johnandrewmarshall.com>2024-02-27 18:26:54 -0500
committerAndrew Marshall <andrew@johnandrewmarshall.com>2024-02-27 18:45:55 -0500
commitce5b1e007e1eb96e5df296e33ed884b70dc19250 (patch)
tree6d4401cbfd248c6dabd15f8e3750430ade626513 /nixos/modules/tasks
parent1c846675398059067b6ad147abc6a7877c4b8368 (diff)
nixos/zfs: Fix typo in option doc
Diffstat (limited to 'nixos/modules/tasks')
-rw-r--r--nixos/modules/tasks/filesystems/zfs.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/tasks/filesystems/zfs.nix b/nixos/modules/tasks/filesystems/zfs.nix
index c6a153cfcb2d7..6939a01d65897 100644
--- a/nixos/modules/tasks/filesystems/zfs.nix
+++ b/nixos/modules/tasks/filesystems/zfs.nix
@@ -220,7 +220,7 @@ in
       package = mkOption {
         type = types.package;
         default = if cfgZfs.enableUnstable then pkgs.zfsUnstable else pkgs.zfs;
-        defaultText = literalExpression "if zfsUnstable is enabled 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.";
       };