From ca9882e39cee54ac49543450fd705f4bf4475c85 Mon Sep 17 00:00:00 2001 From: ibizaman Date: Tue, 17 Oct 2023 13:41:33 -0700 Subject: [PATCH] fix wrong spelling --- modules/ldap.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;