about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2017-11-13 17:01:05 -0500
committerGitHub <noreply@github.com>2017-11-13 17:01:05 -0500
commit9a4b2de4972703f4dc9280f80128650d0fb64283 (patch)
tree4c3e75632314dad6604c6cdf948e4c965b2dbb7e
parent350a5e31fc39c2f44b43a1a6898edab01d7d88e7 (diff)
parent82062f7080a8290d581236cbb5492c1b3872eb05 (diff)
Merge pull request #31630 from Ma27/fix-postgres-quoting
services.postgres: fix quoting in the description of `superUser`
-rw-r--r--nixos/modules/services/databases/postgresql.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/databases/postgresql.nix b/nixos/modules/services/databases/postgresql.nix
index a23a0ebc7366b..9b5e3735239ff 100644
--- a/nixos/modules/services/databases/postgresql.nix
+++ b/nixos/modules/services/databases/postgresql.nix
@@ -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.
         '';