2021-05-04 21:49:16 -07:00
|
|
|
{lib}:
|
2023-03-27 13:35:59 +02:00
|
|
|
lib.makeExtensible (self: let
|
|
|
|
callLibs = file: import file {lib = self;};
|
|
|
|
in rec {
|
|
|
|
## Define your own library functions here!
|
|
|
|
#id = x: x;
|
|
|
|
## Or in files, containing functions that take {lib}
|
|
|
|
#foo = callLibs ./foo.nix;
|
|
|
|
## In configs, they can be used under "lib.our"
|
|
|
|
})
|