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:
parent
ce5b1e007e
commit
929fcf9335
7 changed files with 10 additions and 9 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue