add yubikey

This commit is contained in:
2024-04-14 22:06:49 +02:00
parent 49cdb024fb
commit 6034938775
4 changed files with 26 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
{ 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;
}