Small command for demo purposes, it greets the specified user:
Types:
- helloWorld:
- enable (
boolean): Optional. Defaults tofalse. - name (
string): Name of the user we should greet.
- enable (
Example:
=== "makes.nix"
```nix
{
helloWorld = {
enable = true;
name = "Jane Doe";
};
}
```
=== "Invocation"
```bash
m . /helloWorld 1 2 3
```