add /nt/mix/bootstrap.nix

This commit is contained in:
Emile Clark-Boman 2026-01-28 10:40:33 +10:00
parent 9c1e458140
commit 15e88d5c31

19
nt/mix/bootstrap.nix Normal file
View file

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