mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
12 lines
231 B
Nix
12 lines
231 B
Nix
|
# 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; };
|
||
|
})
|