From 3dc27bcf77e35d8c2b4747efd979893a763140db Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Wed, 24 May 2023 21:08:42 +0100 Subject: [PATCH] gitlab: properly use the username --- applications/gitlab.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/applications/gitlab.nix b/applications/gitlab.nix index ca768b9..6ae794b 100644 --- a/applications/gitlab.nix +++ b/applications/gitlab.nix @@ -150,10 +150,11 @@ #base = "ou=users,${cfg.ldap.base}?sub?(|(skMemberOf=cn=skynet-users,ou=groups,${cfg.ldap.base}))"; base = "ou=users,${cfg.ldap.base}"; - - username = "uid"; - email = "skMail"; - name = "cn"; + attributes = { + username = "uid"; + email = "skMail"; + name = "cn"; + }; group_base= "ou=groups,${cfg.ldap.base}"; admin_group = "skynet-admins";