From 22e797947b8ffa4f20688652e49d46cf58a05516 Mon Sep 17 00:00:00 2001 From: Jens Nolte Date: Thu, 13 May 2021 23:40:10 +0200 Subject: [PATCH] nixos/zfs: Add defaultText for 'boot.zfs.package'-option (#122002) --- nixos/modules/tasks/filesystems/zfs.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/tasks/filesystems/zfs.nix b/nixos/modules/tasks/filesystems/zfs.nix index 21c30305188b..376d6530f363 100644 --- a/nixos/modules/tasks/filesystems/zfs.nix +++ b/nixos/modules/tasks/filesystems/zfs.nix @@ -103,6 +103,7 @@ in readOnly = true; type = types.package; default = if config.boot.zfs.enableUnstable then pkgs.zfsUnstable else pkgs.zfs; + defaultText = "if config.boot.zfs.enableUnstable then pkgs.zfsUnstable else pkgs.zfs"; description = "Configured ZFS userland tools package."; };