nixos/ldap: add missing types

This commit is contained in:
Aaron Andersen 2020-09-26 09:11:57 -04:00
parent d89aff670a
commit a1acbfbfcb

View file

@ -78,11 +78,13 @@ in
};
server = mkOption {
type = types.str;
example = "ldap://ldap.example.org/";
description = "The URL of the LDAP server.";
};
base = mkOption {
type = types.str;
example = "dc=example,dc=org";
description = "The distinguished name of the search base.";
};