summary refs log tree commit diff
path: root/nixos/modules/security/pam_usb.nix
blob: 1c2a6a05f26124cda5fe3e8eac941fd92f427a68 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{config, pkgs, ...}:

with pkgs.lib;

let

  inherit (pkgs) pam_usb;

  cfg = config.security.pam.usb;

  anyUsbAuth = any (attrByPath ["usbAuth"] false) config.security.pam.services;

in

{
  options = {

    security.pam.usb = {
      enable = mkOption {
        default = false;
        description = ''
          Enable USB login for all login system unless the service disabled
          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 ];

  };
}