diff --git a/modules/ldap.nix b/modules/ldap.nix index 331b15f..681ed8b 100644 --- a/modules/ldap.nix +++ b/modules/ldap.nix @@ -27,7 +27,7 @@ in example = "mydomain.com"; }; - ladpPort = lib.mkOption { + ldapPort = lib.mkOption { type = lib.types.port; description = "Port on which the server listens for the LDAP protocol."; default = 3890; @@ -113,7 +113,7 @@ in http_port = cfg.httpPort; ldap_host = "127.0.0.1"; - ldap_port = cfg.ladpPort; + ldap_port = cfg.ldapPort; ldap_base_dn = cfg.dcdomain;