nix-infra/common/fragments/yubikey.nix

13 lines
273 B
Nix
Raw Normal View History

{ pkgs, ... }: {
services.udev.packages = with pkgs; [ libu2f-host yubikey-personalization ];
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryFlavor = "gnome3";
enableExtraSocket = true;
};
services.pcscd.enable = true;
}