nixos/mysql: fix ensureUsers example formatting

closes #50441
This commit is contained in:
Ryan Mulligan 2018-11-15 17:46:09 -08:00
parent 5dea8fa3e7
commit 23dfa4e073

View File

@ -147,7 +147,7 @@ in
option is changed. This means that users created and permissions assigned once through this option or option is changed. This means that users created and permissions assigned once through this option or
otherwise have to be removed manually. otherwise have to be removed manually.
''; '';
example = [ example = literalExample ''[
{ {
name = "nextcloud"; name = "nextcloud";
ensurePermissions = { ensurePermissions = {
@ -160,7 +160,7 @@ in
"*.*" = "SELECT, LOCK TABLES"; "*.*" = "SELECT, LOCK TABLES";
}; };
} }
]; ]'';
}; };
# FIXME: remove this option; it's a really bad idea. # FIXME: remove this option; it's a really bad idea.