nix-infra/modules/common/yubikey.nix

12 lines
238 B
Nix
Raw Normal View History

{pkgs, ...}: {
services.udev.packages = with pkgs; [libu2f-host yubikey-personalization];
2023-12-17 13:33:15 +00:00
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
enableExtraSocket = true;
};
services.pcscd.enable = true;
}