0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

zfs_unstable: Rename from zfsUnstable

This matches the naming of other zfs_* pkgs.
This commit is contained in:
Andrew Marshall 2024-02-27 18:27:39 -05:00
parent ce5b1e007e
commit 929fcf9335
7 changed files with 10 additions and 9 deletions

View file

@ -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 {