From 3ed5e40285745497f13a370e4ddf0188cf147736 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Tue, 7 Mar 2023 10:33:49 +0000 Subject: [PATCH] flake: expose 'lib' attribute This exposes `lib.my` which contains my custom library functions, as well as the entirety of the nixpkgs library. --- flake.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flake.nix b/flake.nix index 1ba900d..36b1b56 100644 --- a/flake.nix +++ b/flake.nix @@ -196,6 +196,8 @@ }; }; }) // { + inherit lib; + overlays = import ./overlays // { lib = final: prev: { inherit lib; }; pkgs = final: prev: {