mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
13 lines
232 B
Nix
13 lines
232 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 = self; };
|
|
}
|
|
)
|