2014-04-14 16:26:48 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2010-01-03 12:59:08 +01:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
with lib;
|
2010-01-03 12:59:08 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.security.pam.usb;
|
|
|
|
|
2013-10-15 14:47:51 +02:00
|
|
|
anyUsbAuth = any (attrByPath ["usbAuth"] false) (attrValues config.security.pam.services);
|
2010-01-03 12:59:08 +01:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
|
|
|
|
security.pam.usb = {
|
|
|
|
enable = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
type = types.bool;
|
2010-01-03 12:59:08 +01:00
|
|
|
default = false;
|
2022-08-03 22:46:41 +02:00
|
|
|
description = lib.mdDoc ''
|
2013-10-15 14:47:51 +02:00
|
|
|
Enable USB login for all login systems that support it. For
|
2022-08-03 22:46:41 +02:00
|
|
|
more information, visit <https://github.com/aluzzardi/pam_usb/wiki/Getting-Started#setting-up-devices-and-users>.
|
2010-01-03 12:59:08 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf (cfg.enable || anyUsbAuth) {
|
|
|
|
|
2016-07-16 02:10:48 +02:00
|
|
|
# Make sure pmount and pumount are setuid wrapped.
|
2017-01-29 12:33:56 +01:00
|
|
|
security.wrappers = {
|
2021-09-12 18:53:48 +02:00
|
|
|
pmount =
|
|
|
|
{ setuid = true;
|
|
|
|
owner = "root";
|
|
|
|
group = "root";
|
|
|
|
source = "${pkgs.pmount.out}/bin/pmount";
|
|
|
|
};
|
|
|
|
pumount =
|
|
|
|
{ setuid = true;
|
|
|
|
owner = "root";
|
|
|
|
group = "root";
|
|
|
|
source = "${pkgs.pmount.out}/bin/pumount";
|
|
|
|
};
|
2017-01-29 12:33:56 +01:00
|
|
|
};
|
2016-07-16 02:10:48 +02:00
|
|
|
|
2010-01-03 12:59:08 +01:00
|
|
|
environment.systemPackages = [ pkgs.pmount ];
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|