mirror of
https://gitlab.com/rensa-nix/core.git
synced 2025-12-11 22:00:09 +01:00
chore: initial commit
This commit is contained in:
commit
3aeff518bb
20 changed files with 1122 additions and 0 deletions
11
lib/default.nix
Normal file
11
lib/default.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{lib}: let
|
||||
l = builtins // lib;
|
||||
utils = import ./utils {inherit l;};
|
||||
core = import ./core {inherit l utils;};
|
||||
compat = import ./compat {inherit l;};
|
||||
in {
|
||||
inherit (compat) filter select get;
|
||||
inherit (core) build buildWith;
|
||||
# TODO:
|
||||
# blocks = import ./blocks;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue