nixos/zookeeper: Remove .passthru as suggested

This commit is contained in:
Xiami 2022-04-26 18:44:33 +08:00
parent 3e5e584c1f
commit b43999bea0
No known key found for this signature in database
GPG Key ID: 53E2BDD8BD17882C

View File

@ -116,8 +116,8 @@ in {
jre = mkOption {
description = "The JRE with which to run Zookeeper";
default = cfg.package.passthru.jre;
defaultText = literalExpression "pkgs.zookeeper.passthru.jre";
default = cfg.package.jre;
defaultText = literalExpression "pkgs.zookeeper.jre";
example = literalExpression "pkgs.jre";
type = types.package;
};