MAJOR: create nt/primitives/bootstrap

This commit is contained in:
Emile Clark-Boman 2026-01-25 13:08:05 +10:00
parent db24747a47
commit 7e930193a9
27 changed files with 132 additions and 92 deletions

View file

@ -4,8 +4,8 @@
outputs = _: let
# nt depends on the mix subsystem for bootstrapping,
# we can fake its dependency on this mwahahahah
this.util = import ./nt/primitives/util/bootstrap.nix;
mix = import ./nt/primitives/mix {inherit this;};
bootstrap = import ./nt/primitives/bootstrap;
mix = import ./nt/primitives/mix {this = bootstrap;};
in
import ./nt {inherit mix;};
}