diff --git a/flake.nix b/flake.nix index 8b22a16..8a08124 100644 --- a/flake.nix +++ b/flake.nix @@ -5,7 +5,7 @@ # Step 1: Bootstrap and blast off (*zooommmmm whoooosshhhhh pppppeeeeeeewww*) bootstrap = import ./nt/primitives/bootstrap; # Step 2: Lie to Mix about its real identity (it's not ready for the truth...) - mix = import ./nt/primitives/mix {this = bootstrap;}; + mix = import ./nt/mix {this = bootstrap;}; in # Step 3: Actually import NixTypes import ./nt {inherit mix;}; diff --git a/nt/primitives/mix/default.nix b/nt/mix/default.nix similarity index 100% rename from nt/primitives/mix/default.nix rename to nt/mix/default.nix diff --git a/nt/primitives/default.nix b/nt/primitives/default.nix index 870ead5..32f4ba5 100644 --- a/nt/primitives/default.nix +++ b/nt/primitives/default.nix @@ -5,7 +5,6 @@ mix.newMixture inputs (mixture: { ./bootstrap ]; submods.public = [ - ./mix # TODO: make ./util private ./util ];