docs: fix user module prompt description

This commit is contained in:
Johannes Kirschbauer
2025-07-10 19:00:39 +02:00
parent 387807800e
commit c56bb3c37f

View File

@@ -20,7 +20,19 @@
type = lib.types.bool;
default = true;
example = false;
description = "Whether the user should be prompted.";
description = ''
Whether the user should be prompted for a password.
Effects:
- *enabled* (`true`) - Prompt for a passwort during the machine installation or update workflow.
- *disabled* (`false`) - Generate a passwort during the machine installation or update workflow.
The password can be shown in two steps:
- `clan vars list <machine-name>`
- `clan vars get <machine-name> <name-of-password-variable>`
'';
};
};
};