nixos/openldap: Fix indentation

This commit is contained in:
Kai Wohlfahrt 2020-09-27 17:10:13 +01:00
parent 3f892c2174
commit b2ebffe186
1 changed files with 15 additions and 15 deletions

View File

@ -51,26 +51,26 @@ let
default = {}; default = {};
description = "Child entries of the current entry, with recursively the same structure."; description = "Child entries of the current entry, with recursively the same structure.";
example = lib.literalExample '' example = lib.literalExample ''
{ {
"cn=schema" = { "cn=schema" = {
# The attribute used in the DN must be defined # The attribute used in the DN must be defined
attrs = { cn = "schema"; }; attrs = { cn = "schema"; };
children = { children = {
# This entry's DN is expanded to "cn=foo,cn=schema" # This entry's DN is expanded to "cn=foo,cn=schema"
"cn=foo" = { ... }; "cn=foo" = { ... };
}; };
# These includes are inserted after "cn=schema", but before "cn=foo,cn=schema" # These includes are inserted after "cn=schema", but before "cn=foo,cn=schema"
includes = [ ... ]; includes = [ ... ];
}; };
} }
''; '';
}; };
includes = mkOption { includes = mkOption {
type = types.listOf types.path; type = types.listOf types.path;
default = []; default = [];
description = '' 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; }; in types.submodule { inherit options; };