From a1acbfbfcb8cb81f0172ff543013793a4f6d492a Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Sat, 26 Sep 2020 09:11:57 -0400 Subject: [PATCH] nixos/ldap: add missing types --- nixos/modules/config/ldap.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/config/ldap.nix b/nixos/modules/config/ldap.nix index 98ebb5f7004f..943a2434617e 100644 --- a/nixos/modules/config/ldap.nix +++ b/nixos/modules/config/ldap.nix @@ -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."; };