From 924ad483576d712f1271c5e754046e2dc1ab0236 Mon Sep 17 00:00:00 2001 From: Federico Mastellone Date: Sat, 6 Aug 2022 04:54:12 +0000 Subject: [PATCH] Inline --- nix/workbench/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/nix/workbench/default.nix b/nix/workbench/default.nix index 7d0d1f05aa7..d0f0219c318 100644 --- a/nix/workbench/default.nix +++ b/nix/workbench/default.nix @@ -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; }; @@ -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 {