dotfiles/nixpkgs/overlays/lib/default.nix

10 lines
238 B
Nix
Raw Normal View History

self: super:
{
lib = super.lib // {
attrsets = import ./attrsets.nix self super;
lists = import ./lists.nix self super;
strings = import ./strings.nix self super;
termColors = import ./termColors.nix self super;
};
}