From ed499de65127e4af79b00af633a587f118058f5d Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Tue, 27 Jan 2026 08:34:41 +1000 Subject: [PATCH] provide flake instead of self --- flake.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 8a08124..bef4542 100644 --- a/flake.nix +++ b/flake.nix @@ -1,14 +1,17 @@ { description = "NixTypes (nt)"; - outputs = _: let + outputs = inputs: let # 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/mix {this = bootstrap;}; in # Step 3: Actually import NixTypes - import ./nt {inherit mix;}; + import ./nt { + inherit mix; + flake = inputs.self; + }; # Step 4: Like and subscripe!!1!11!!!!! }