Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 3 additions & 7 deletions nixos/modules/services/security/kanidm.nix
Original file line number Diff line number Diff line change
Expand Up @@ -369,11 +369,6 @@ in
freeformType = settingsFormat.type;

options = {
pam_allowed_login_groups = mkOption {
description = "Kanidm groups that are allowed to login using PAM.";
example = "my_pam_group";
type = types.listOf types.str;
};
hsm_pin_path = mkOption {
description = "Path to a HSM pin.";
default = "/var/cache/kanidm-unixd/hsm-pin";
Expand All @@ -383,8 +378,9 @@ in
};
description = ''
Configure Kanidm unix daemon.
See [the documentation](https://kanidm.github.io/kanidm/stable/integrations/pam_and_nsswitch.html#the-unix-daemon)
and [example configuration](https://github.com/kanidm/kanidm/blob/master/examples/unixd)
See [the documentation](https://kanidm.github.io/kanidm/stable/integrations/pam_and_nsswitch.html#the-unix-daemon),
[example configuration](https://github.com/kanidm/kanidm/blob/master/examples/unixd)
and the [source](https://github.com/kanidm/kanidm/blob/master/unix_integration/resolver/src/unix_config.rs)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This link is dead. They moved the files around.

for possible values.
'';
};
Expand Down