home-manager/modules/lib/stdlib-extended.nix

8 lines
221 B
Nix
Raw Normal View History

# Just a convenience function that returns the given Nixpkgs standard
# library extended with the HM library.
nixpkgsLib:
2020-02-02 00:39:17 +01:00
let mkHmLib = import ./.;
in nixpkgsLib.extend (self: super: { hm = mkHmLib { lib = super; }; })