Merge pull request #31630 from Ma27/fix-postgres-quoting

services.postgres: fix quoting in the description of `superUser`
This commit is contained in:
Graham Christensen
2017-11-13 17:01:05 -05:00
committed by GitHub

View File

@@ -153,7 +153,7 @@ in
default= if versionAtLeast config.system.stateVersion "17.09" then "postgres" else "root";
internal = true;
description = ''
NixOS traditionally used `root` as superuser, most other distros use `postgres`.
NixOS traditionally used 'root' as superuser, most other distros use 'postgres'.
From 17.09 we also try to follow this standard. Internal since changing this value
would lead to breakage while setting up databases.
'';