chore: moved zookeeper and website to packages

This commit is contained in:
Nick 2025-11-28 00:44:38 -06:00
parent cc288ad959
commit cf8516c54f
976 changed files with 40485 additions and 0 deletions

11
packages/default.nix Executable file
View file

@ -0,0 +1,11 @@
let
importList =
let
content = builtins.readDir ./.;
dirContent = builtins.filter (n: content.${n} == "directory") (builtins.attrNames content);
in
map (name: ./. + "/${name}") dirContent;
in
{
imports = importList;
}