mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
61e93df189
once again using nix-doc-munge (69d080323a
)
52 lines
1.0 KiB
Nix
52 lines
1.0 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.security.pam.usb;
|
|
|
|
anyUsbAuth = any (attrByPath ["usbAuth"] false) (attrValues config.security.pam.services);
|
|
|
|
in
|
|
|
|
{
|
|
options = {
|
|
|
|
security.pam.usb = {
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = lib.mdDoc ''
|
|
Enable USB login for all login systems that support it. For
|
|
more information, visit <https://github.com/aluzzardi/pam_usb/wiki/Getting-Started#setting-up-devices-and-users>.
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
config = mkIf (cfg.enable || anyUsbAuth) {
|
|
|
|
# Make sure pmount and pumount are setuid wrapped.
|
|
security.wrappers = {
|
|
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";
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = [ pkgs.pmount ];
|
|
|
|
};
|
|
}
|