Docs(cli/machines): improve description of '--template'

This commit is contained in:
Johannes Kirschbauer
2025-06-11 16:05:50 +02:00
parent 1e3e7b6d37
commit b5ed9fdfed

View File

@@ -145,6 +145,8 @@ def register_create_parser(parser: argparse.ArgumentParser) -> None:
"-t",
"--template",
type=str,
help="Reference to the template to use for the machine. In the format '<flake_ref>#template_name'",
help="""Reference to the template to use for the machine. In the format '<flake_ref>#template_name' Where <flake_ref> is a flake reference (e.g. github:org/repo) or a local path (e.g. '.' ).
Omitting '<flake_ref>#' will use the pre-provided templates (e.g. just 'new-machine' (default) ).
""",
default="new-machine",
)