We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b91f6d6 commit 4ed079eCopy full SHA for 4ed079e
nix/nixos/cardano-node-service.nix
@@ -191,9 +191,9 @@ in {
191
package = mkOption {
192
type = types.package;
193
default = if (cfg.profiling != "none")
194
- then cfg.cardanoNodePackages.cardano-node.profiled
195
- else if cfg.eventlog then cfg.cardanoNodePackages.cardano-node.eventlogged
196
- else if cfg.asserts then cfg.cardanoNodePackages.cardano-node.asserted
+ then cfg.cardanoNodePackages.cardano-node.passthru.profiled
+ else if cfg.eventlog then cfg.cardanoNodePackages.cardano-node.passthru.eventlogged
+ else if cfg.asserts then cfg.cardanoNodePackages.cardano-node.passthru.asserted
197
else cfg.cardanoNodePackages.cardano-node;
198
defaultText = "cardano-node";
199
description = ''
0 commit comments