mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
13 lines
390 B
Nix
13 lines
390 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; };
|
|
|
|
# For forward compatibility.
|
|
literalExpression = super.literalExpression or super.literalExample;
|
|
literalDocBook = super.literalDocBook or super.literalExample;
|
|
})
|