nix-config/config/hardware/yubikey.nix
Patrick fcd5a27dce
chore: new README
chore: new structure
2024-04-11 23:11:53 +02:00

12 lines
248 B
Nix

{pkgs, ...}: {
environment.systemPackages = with pkgs; [
yubikey-personalization
yubikey-manager
age-plugin-yubikey
];
services.pcscd.enable = true;
services.udev.packages = with pkgs; [yubikey-personalization libu2f-host];
}