feat: add autodiscovery for cell blocks

This commit is contained in:
technofab 2026-01-04 20:49:21 +01:00
parent e08c48b5db
commit 50d96d43ce
Signed by: technofab
SSH key fingerprint: SHA256:bV4h88OqS/AxjbPn66uUdvK9JsgIW4tv3vwJQ8tpMqQ
10 changed files with 251 additions and 45 deletions

View file

@ -6,6 +6,17 @@
dynamic = name: {
inherit name;
type = name;
cli = true;
actions = args: {};
# TODO: dynamic actions
};
autodiscover = {
name = "__autodiscover";
type = "__autodiscover";
_functor = self: cell:
self
// {
inherit cell;
};
};
}