Skip to content

Commit 4ed079e

Browse files
committed
node nixos service: fix path of profiled, eventlogged and asserted binaries
1 parent b91f6d6 commit 4ed079e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

nix/nixos/cardano-node-service.nix

+3-3
Original file line numberDiff line numberDiff line change
@@ -191,9 +191,9 @@ in {
191191
package = mkOption {
192192
type = types.package;
193193
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
194+
then cfg.cardanoNodePackages.cardano-node.passthru.profiled
195+
else if cfg.eventlog then cfg.cardanoNodePackages.cardano-node.passthru.eventlogged
196+
else if cfg.asserts then cfg.cardanoNodePackages.cardano-node.passthru.asserted
197197
else cfg.cardanoNodePackages.cardano-node;
198198
defaultText = "cardano-node";
199199
description = ''

0 commit comments

Comments
 (0)