From b2ebffe18634e5038fe911b3bd2c74d26e7a7ab9 Mon Sep 17 00:00:00 2001 From: Kai Wohlfahrt Date: Sun, 27 Sep 2020 17:10:13 +0100 Subject: [PATCH] nixos/openldap: Fix indentation --- nixos/modules/services/databases/openldap.nix | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/nixos/modules/services/databases/openldap.nix b/nixos/modules/services/databases/openldap.nix index fb043df9d60..6f1ac3ed717 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; };