nix-infra/modules/common/yubikey.nix

14 lines
244 B
Nix
Raw Normal View History

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