Skip to content

Examples

helloWorld

Small command for demo purposes, it greets the specified user:

Types:

  • helloWorld:
    • enable (boolean): Optional. Defaults to false.
    • name (string): Name of the user we should greet.

Example:

1
2
3
4
5
6
{
  helloWorld = {
    enable = true;
    name = "Jane Doe";
  };
}
m . /helloWorld 1 2 3