aboutsummaryrefslogtreecommitdiff
path: root/home-manager/modules/lib/stdlib-extended.nix
blob: 93f2397cee82044a1d8aaf1eac4ca525d817eaa7 (plain)
1
2
3
4
5
6
7
# Just a convenience function that returns the given Nixpkgs standard
# library extended with the HM library.

nixpkgsLib:

let mkHmLib = import ./.;
in nixpkgsLib.extend (self: super: { hm = mkHmLib { lib = super; }; })