.hive/modules/hardware/yubikey.nix
2024-04-14 22:06:49 +02:00

14 lines
255 B
Nix

{ config, pkgs, ... }:
{
# Include udev rules for yubikey.
services.udev.packages = with pkgs; [
yubikey-personalization
];
# OTP Manager
environment.systemPackages = with pkgs; [
yubioath-flutter
];
services.pcscd.enable = true;
}