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 60e40a2073
commit 4bb9d7808f
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360
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]