Skip to content

Commit

Permalink
nixos node svc: use topology.json vs yaml for consistency w/ other cfgs
Browse files Browse the repository at this point in the history
  • Loading branch information
johnalotoski committed Feb 27, 2025
1 parent da5121c commit b790e41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nix/nixos/cardano-node-service.nix
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ let
selectTopology = i:
if cfg.topology != null
then cfg.topology
else toFile "topology.yaml" (toJSON (if (cfg.useNewTopology) then assertNewTopology i else oldTopology i));
else toFile "topology.json" (toJSON (if (cfg.useNewTopology) then assertNewTopology i else oldTopology i));

topology = i:
if cfg.useSystemdReload
Expand Down

0 comments on commit b790e41

Please sign in to comment.