From ce5b1e007e1eb96e5df296e33ed884b70dc19250 Mon Sep 17 00:00:00 2001 From: Andrew Marshall Date: Tue, 27 Feb 2024 18:26:54 -0500 Subject: [PATCH] nixos/zfs: Fix typo in option doc --- nixos/modules/tasks/filesystems/zfs.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/tasks/filesystems/zfs.nix b/nixos/modules/tasks/filesystems/zfs.nix index c6a153cfcb2d..6939a01d6589 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."; };