0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

ldap: Add option for login PAM integration

This commit is contained in:
Markus Mueller 2016-07-18 13:20:21 +00:00 committed by Franz Pletz
parent 415e1983ca
commit e04c3506eb
2 changed files with 11 additions and 4 deletions

View file

@ -62,6 +62,12 @@ in
description = "Whether to enable authentication against an LDAP server.";
};
loginPam = mkOption {
type = types.bool;
default = true;
description = "Whether to include authentication against LDAP in login PAM";
};
server = mkOption {
example = "ldap://ldap.example.org/";
description = "The URL of the LDAP server.";