mlaga97-nix/nixos/features/hardware/yubikey.nix
2025-07-13 16:34:33 -05:00

20 lines
380 B
Nix

{ pkgs, lib, ... }: {
environment.systemPackages = with pkgs; [
yubikey-manager
yubioath-flutter
age-plugin-yubikey
yubikey-touch-detector
];
services.udev.packages = with pkgs; [
yubikey-personalization
];
services.pcscd.enable = true;
programs.ssh.startAgent = false;
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
}