wrapper-manager-fds: add overlays in the user entrypoint

This commit is contained in:
Gabriel Arazas 2024-08-20 20:04:26 +08:00
parent af90ee1db2
commit 9d5c5be409
2 changed files with 6 additions and 0 deletions

View File

@ -17,4 +17,7 @@
lib = import ./lib/env.nix;
wrapperManagerLib = ./lib;
overlays.default = final: prev: {
wrapperManagerLib = import ./lib { pkgs = final; };
};
}

View File

@ -127,6 +127,9 @@ in
wrapperManagerLib.env.build { }
----
* `overlays` is a set of nixpkgs overlays to be applied by the user.
So far, there's only one overlay called `default` containing the wrapper-manager library set.
[#getting-started]