mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 04:05:40 +03:00
nixos/doc: fix some options
This commit is contained in:
parent
4cc7973ae6
commit
0ff3b35356
31 changed files with 67 additions and 60 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue