a2c820c678
That is, you can say security.pam.services.sshd = { options... }; instead of security.pam.services = [ { name = "sshd"; options... } ]; making it easier to override PAM settings from other modules.
42 lines
802 B
Nix
42 lines
802 B
Nix
{config, pkgs, ...}:
|
|
|
|
with pkgs.lib;
|
|
|
|
let
|
|
|
|
inherit (pkgs) pam_usb;
|
|
|
|
cfg = config.security.pam.usb;
|
|
|
|
anyUsbAuth = any (attrByPath ["usbAuth"] false) (attrValues config.security.pam.services);
|
|
|
|
in
|
|
|
|
{
|
|
options = {
|
|
|
|
security.pam.usb = {
|
|
enable = mkOption {
|
|
default = false;
|
|
description = ''
|
|
Enable USB login for all login systems that support it. For
|
|
more information, visit <link
|
|
xlink:href="http://pamusb.org/doc/quickstart#setting_up" />.
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
config = mkIf (cfg.enable || anyUsbAuth) {
|
|
|
|
# pmount need to have a set-uid bit to make pam_usb works in user
|
|
# environment. (like su, sudo)
|
|
|
|
security.setuidPrograms = [ "pmount" "pumount" ];
|
|
environment.systemPackages = [ pkgs.pmount ];
|
|
|
|
};
|
|
}
|