nixos/doc: fix some options

This commit is contained in:
Naïm Favier 2022-11-03 15:52:19 +01:00 committed by pennae
parent 4cc7973ae6
commit 0ff3b35356
31 changed files with 67 additions and 60 deletions

View file

@ -160,10 +160,12 @@ in
List of database names and their initial schemas that should be used to create databases on the first startup
of MySQL. The schema attribute is optional: If not specified, an empty database is created.
'';
example = [
{ name = "foodatabase"; schema = literalExpression "./foodatabase.sql"; }
{ name = "bardatabase"; }
];
example = literalExpression ''
[
{ name = "foodatabase"; schema = ./foodatabase.sql; }
{ name = "bardatabase"; }
]
'';
};
initialScript = mkOption {