lib: start moving top-level binds to binds

This commit is contained in:
raf 2024-02-26 07:28:07 +03:00
commit bf1118eb28
No known key found for this signature in database
GPG key ID: 02D1DD3FA08B6B29
3 changed files with 74 additions and 2 deletions

View file

@ -1,6 +1,8 @@
{lib}: {
dag = import ./dag.nix {inherit lib;};
types = import ./types {inherit lib;};
binds = import ./binds.nix {inherit lib;};
dag = import ./dag.nix {inherit lib;};
languages = import ./languages.nix {inherit lib;};
lua = import ./lua.nix {inherit lib;};
vim = import ./vim.nix {inherit lib;};