From 15e88d5c31dcdfbce2a4f9f08a7a6af20229bce5 Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Wed, 28 Jan 2026 10:40:33 +1000 Subject: [PATCH] add /nt/mix/bootstrap.nix --- nt/mix/bootstrap.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 nt/mix/bootstrap.nix 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