summary refs log tree commit diff
path: root/nixos/modules/services/databases/dgraph.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/databases/dgraph.nix')
-rw-r--r--nixos/modules/services/databases/dgraph.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/nixos/modules/services/databases/dgraph.nix b/nixos/modules/services/databases/dgraph.nix
index 5c1ae536051..a6178b3d1cc 100644
--- a/nixos/modules/services/databases/dgraph.nix
+++ b/nixos/modules/services/databases/dgraph.nix
@@ -60,7 +60,7 @@ in
       settings = mkOption {
         type = settingsFormat.type;
         default = {};
-        description = ''
+        description = lib.mdDoc ''
           Contents of the dgraph config. For more details see https://dgraph.io/docs/deploy/config
         '';
       };
@@ -69,14 +69,14 @@ in
         host = mkOption {
           type = types.str;
           default = "localhost";
-          description = ''
+          description = lib.mdDoc ''
             The host which dgraph alpha will be run on.
           '';
         };
         port = mkOption {
           type = types.port;
           default = 7080;
-          description = ''
+          description = lib.mdDoc ''
             The port which to run dgraph alpha on.
           '';
         };
@@ -87,14 +87,14 @@ in
         host = mkOption {
           type = types.str;
           default = "localhost";
-          description = ''
+          description = lib.mdDoc ''
             The host which dgraph zero will be run on.
           '';
         };
         port = mkOption {
           type = types.port;
           default = 5080;
-          description = ''
+          description = lib.mdDoc ''
             The port which to run dgraph zero on.
           '';
         };