about summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorKai Wohlfahrt <kai.wohlfahrt@gmail.com>2020-09-27 17:10:13 +0100
committerKai Wohlfahrt <kai.wohlfahrt@gmail.com>2020-11-21 16:13:03 +0000
commitb2ebffe18634e5038fe911b3bd2c74d26e7a7ab9 (patch)
tree12cef23bfe3f5c4f84e5014a7f2f6ac21088642c /nixos/modules
parent3f892c2174d3e215be2e12d6dacede3cd4db392c (diff)
nixos/openldap: Fix indentation
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/databases/openldap.nix30
1 files changed, 15 insertions, 15 deletions
diff --git a/nixos/modules/services/databases/openldap.nix b/nixos/modules/services/databases/openldap.nix
index fb043df9d60f9..6f1ac3ed71721 100644
--- a/nixos/modules/services/databases/openldap.nix
+++ b/nixos/modules/services/databases/openldap.nix
@@ -51,26 +51,26 @@ let
           default = {};
           description = "Child entries of the current entry, with recursively the same structure.";
           example = lib.literalExample ''
-          {
-            "cn=schema" = {
-              # The attribute used in the DN must be defined
-              attrs = { cn = "schema"; };
-              children = {
-                # This entry's DN is expanded to "cn=foo,cn=schema"
-                "cn=foo" = { ... };
-              };
-              # These includes are inserted after "cn=schema", but before "cn=foo,cn=schema"
-              includes = [ ... ];
-            };
-          }
-        '';
+            {
+                "cn=schema" = {
+                # The attribute used in the DN must be defined
+                attrs = { cn = "schema"; };
+                children = {
+                    # This entry's DN is expanded to "cn=foo,cn=schema"
+                    "cn=foo" = { ... };
+                };
+                # These includes are inserted after "cn=schema", but before "cn=foo,cn=schema"
+                includes = [ ... ];
+                };
+            }
+          '';
         };
         includes = mkOption {
           type = types.listOf types.path;
           default = [];
           description = ''
-          LDIF files to include after the parent's attributes but before its children.
-        '';
+            LDIF files to include after the parent's attributes but before its children.
+          '';
         };
       };
     in types.submodule { inherit options; };