flake: expose 'lib' attribute

This exposes `lib.my` which contains my custom library functions, as
well as the entirety of the nixpkgs library.
This commit is contained in:
Bruno BELANYI 2023-03-07 10:33:49 +00:00
parent 068faea1e2
commit 3ed5e40285
1 changed files with 2 additions and 0 deletions

View File

@ -196,6 +196,8 @@
};
};
}) // {
inherit lib;
overlays = import ./overlays // {
lib = final: prev: { inherit lib; };
pkgs = final: prev: {