From cd644ee4c8ffa467b659cba6b94a6c4c61e4e1c8 Mon Sep 17 00:00:00 2001 From: Nikkuss Date: Tue, 17 Dec 2024 15:52:43 +0400 Subject: [PATCH] working wrapper --- flake.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index c8289d4..0fe3534 100644 --- a/flake.nix +++ b/flake.nix @@ -3,5 +3,9 @@ inputs = { }; - outputs = _: { pkgs }: import ./lib.nix { inherit pkgs; }; + outputs = + { ... }: + { + mkLib = pkgs: import ./lib.nix { inherit pkgs; }; + }; }