Skip to content

Commit

Permalink
Inline
Browse files Browse the repository at this point in the history
  • Loading branch information
fmaste committed Aug 8, 2022
1 parent a3169cb commit 924ad48
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions nix/workbench/default.nix
Expand Up @@ -89,8 +89,6 @@ let
JSON = pkgs.writeText "all-profiles.json" (__toJSON (mapAttrs (_: x: x.value) value));
};

## profile-topology :: ProfileNix -> Topology
profile-topology = import ./topology.nix { inherit pkgs; };
## profile-topology :: ProfileNix -> Topology -> Genesis
profile-topology-genesis = import ./genesis.nix { inherit pkgs; };

Expand All @@ -105,7 +103,8 @@ let
profile = (import ./profile.nix { inherit pkgs lib; })
{ inherit profileNix backend; };

topology = profile-topology { inherit profileNix profile; };
topology = (import ./topology.nix { inherit pkgs; })
{ inherit profileNix profile; };

genesis = profile-topology-genesis { inherit profile; };
in {
Expand Down

0 comments on commit 924ad48

Please sign in to comment.