chore: initial commit

This commit is contained in:
technofab 2025-08-05 14:55:13 +02:00
commit 3aeff518bb
No known key found for this signature in database
20 changed files with 1122 additions and 0 deletions

11
lib/default.nix Normal file
View 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;
}