mirror of
https://gitlab.com/rensa-nix/core.git
synced 2025-12-11 22:00:09 +01:00
11 lines
151 B
Nix
11 lines
151 B
Nix
{
|
|
simple = name: {
|
|
inherit name;
|
|
type = name;
|
|
};
|
|
dynamic = name: {
|
|
inherit name;
|
|
type = name;
|
|
# TODO: dynamic actions
|
|
};
|
|
}
|