diff --git a/nt/mix/bootstrap.nix b/nt/mix/bootstrap.nix new file mode 100644 index 0000000..4599bdc --- /dev/null +++ b/nt/mix/bootstrap.nix @@ -0,0 +1,19 @@ +# WARNING: /nt/mix is structured as a nt.mix modules +# WARNING: this file is strictly for bootstrapping mix +{ + this, + bootstrap, + ... +}: let + inputs = { + inherit bootstrap; + this = mix; + nt = this; + }; + + mix = bootstrap inputs [ + ./mix.nix + ./import.nix + ]; +in + mix