move mix to /nt/mix

This commit is contained in:
Emile Clark-Boman 2026-01-25 14:32:07 +10:00
parent c20d421c6d
commit 293871a50c
3 changed files with 1 additions and 2 deletions

View file

@ -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;};

View file

@ -5,7 +5,6 @@ mix.newMixture inputs (mixture: {
./bootstrap
];
submods.public = [
./mix
# TODO: make ./util private
./util
];