From 293871a50cc3d50a313db53d1b14f050036d6437 Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Sun, 25 Jan 2026 14:32:07 +1000 Subject: [PATCH] move mix to /nt/mix --- flake.nix | 2 +- nt/{primitives => }/mix/default.nix | 0 nt/primitives/default.nix | 1 - 3 files changed, 1 insertion(+), 2 deletions(-) rename nt/{primitives => }/mix/default.nix (100%) diff --git a/flake.nix b/flake.nix index 8b22a16..8a08124 100644 --- a/flake.nix +++ b/flake.nix @@ -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;}; diff --git a/nt/primitives/mix/default.nix b/nt/mix/default.nix similarity index 100% rename from nt/primitives/mix/default.nix rename to nt/mix/default.nix diff --git a/nt/primitives/default.nix b/nt/primitives/default.nix index 870ead5..32f4ba5 100644 --- a/nt/primitives/default.nix +++ b/nt/primitives/default.nix @@ -5,7 +5,6 @@ mix.newMixture inputs (mixture: { ./bootstrap ]; submods.public = [ - ./mix # TODO: make ./util private ./util ];