This commit is contained in:
Bryan Ramos 2026-03-15 02:43:16 -04:00
commit 259d9ed5a0
111 changed files with 7219 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{ pkgs, lib, config, ... }:
with lib;
let
cfg = config.modules.user.security.yubikey;
in
{ options.modules.user.security.yubikey = { enable = mkEnableOption "Enable Yubikey support"; };
config = mkIf cfg.enable {
home.packages = with pkgs; [
yubikey-manager
age-plugin-yubikey
yubico-piv-tool
];
};
}