mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
26 lines
430 B
Nix
26 lines
430 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.options) mkOption;
|
|
in {
|
|
options.users.ldap = with lib.types; {
|
|
domainDnSuffix = mkOption {
|
|
type = str;
|
|
default = "";
|
|
};
|
|
hostDnSuffix = mkOption {
|
|
type = str;
|
|
default = "";
|
|
};
|
|
serviceDnSuffix = mkOption {
|
|
type = str;
|
|
default = "";
|
|
};
|
|
sysAccountDnSuffix = mkOption {
|
|
type = str;
|
|
default = "";
|
|
};
|
|
};
|
|
}
|