Skip to content
This repository was archived by the owner on Sep 1, 2025. It is now read-only.

Latest commit

 

History

History
30 lines (22 loc) · 435 Bytes

File metadata and controls

30 lines (22 loc) · 435 Bytes

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:

=== "makes.nix"

```nix
{
  helloWorld = {
    enable = true;
    name = "Jane Doe";
  };
}
```

=== "Invocation"

```bash
m . /helloWorld 1 2 3
```