nix-infra/hosts/common/yubikey.nix

12 lines
242 B
Nix
Raw Normal View History

2024-03-24 18:02:29 +00:00
{ 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;
}