Skip to content

Commit a53e053

Browse files
committed
drop! nixos/postgresql: Remove md documentation functions.
1 parent 55f04c3 commit a53e053

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

nixos/modules/services/databases/postgresql.nix

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ in
171171
};
172172

173173
ensureClauses = mkOption {
174-
description = lib.mdDoc ''
174+
description = ''
175175
An attrset of clauses to grant to the user. Under the hood this uses the
176176
[ALTER USER syntax](https://www.postgresql.org/docs/current/sql-alteruser.html) for each attrName where
177177
the attrValue is true in the attrSet:
@@ -185,18 +185,18 @@ in
185185
}
186186
'';
187187
default = {};
188-
defaultText = lib.literalMD ''
188+
defaultText = ''
189189
If not set then the user created will have the default permissions assigned by postgres
190190
'';
191191
type = types.submodule {
192192
options = let
193-
defaultText = lib.literalMD ''
193+
defaultText = ''
194194
`null`: do not set. For newly created roles, use PostgreSQL's default. For existing roles, do not touch this clause.
195195
'';
196196
in {
197197
superuser = mkOption {
198198
type = types.nullOr types.bool;
199-
description = lib.mdDoc ''
199+
description = ''
200200
Grants the user, created by the ensureUser attr, superuser permissions. From the postgres docs:
201201
202202
A database superuser bypasses all permission checks,
@@ -213,7 +213,7 @@ in
213213
};
214214
createrole = mkOption {
215215
type = types.nullOr types.bool;
216-
description = lib.mdDoc ''
216+
description = ''
217217
Grants the user, created by the ensureUser attr, createrole permissions. From the postgres docs:
218218
219219
A role must be explicitly given permission to create more
@@ -232,7 +232,7 @@ in
232232
};
233233
createdb = mkOption {
234234
type = types.nullOr types.bool;
235-
description = lib.mdDoc ''
235+
description = ''
236236
Grants the user, created by the ensureUser attr, createdb permissions. From the postgres docs:
237237
238238
A role must be explicitly given permission to create
@@ -247,7 +247,7 @@ in
247247
};
248248
"inherit" = mkOption {
249249
type = types.nullOr types.bool;
250-
description = lib.mdDoc ''
250+
description = ''
251251
Grants the user created inherit permissions. From the postgres docs:
252252
253253
A role is given permission to inherit the privileges of
@@ -262,7 +262,7 @@ in
262262
};
263263
login = mkOption {
264264
type = types.nullOr types.bool;
265-
description = lib.mdDoc ''
265+
description = ''
266266
Grants the user, created by the ensureUser attr, login permissions. From the postgres docs:
267267
268268
Only roles that have the LOGIN attribute can be used as
@@ -284,7 +284,7 @@ in
284284
};
285285
replication = mkOption {
286286
type = types.nullOr types.bool;
287-
description = lib.mdDoc ''
287+
description = ''
288288
Grants the user, created by the ensureUser attr, replication permissions. From the postgres docs:
289289
290290
A role must explicitly be given permission to initiate
@@ -300,7 +300,7 @@ in
300300
};
301301
bypassrls = mkOption {
302302
type = types.nullOr types.bool;
303-
description = lib.mdDoc ''
303+
description = ''
304304
Grants the user, created by the ensureUser attr, replication permissions. From the postgres docs:
305305
306306
A role must be explicitly given permission to bypass

0 commit comments

Comments
 (0)