Skip to content

Commit

Permalink
node nixos service: fix path of profiled, eventlogged and asserted bi…
Browse files Browse the repository at this point in the history
…naries
  • Loading branch information
jbgi committed Jan 18, 2023
1 parent 803006c commit 39619f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nix/nixos/cardano-node-service.nix
Original file line number Diff line number Diff line change
Expand Up @@ -191,9 +191,9 @@ in {
package = mkOption {
type = types.package;
default = if (cfg.profiling != "none")
then cfg.cardanoNodePackages.cardano-node.profiled
else if cfg.eventlog then cfg.cardanoNodePackages.cardano-node.eventlogged
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
else cfg.cardanoNodePackages.cardano-node;
defaultText = "cardano-node";
description = ''
Expand Down

0 comments on commit 39619f7

Please sign in to comment.