core/lib/default.nix

12 lines
276 B
Nix
Raw Normal View History

2025-08-05 14:55:13 +02:00
{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;
}