From 2961ce1531734162a2fc4fcf785af7c19f785a9b Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Thu, 3 Oct 2024 03:40:42 -0500 Subject: [PATCH] feat(hosts/orion): add yubikey tools to systemPackages --- hosts/orion/modules/services/yubikey.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hosts/orion/modules/services/yubikey.nix b/hosts/orion/modules/services/yubikey.nix index 40977809..93056b78 100644 --- a/hosts/orion/modules/services/yubikey.nix +++ b/hosts/orion/modules/services/yubikey.nix @@ -2,4 +2,8 @@ { services.udev.packages = [ pkgs.yubikey-personalization ]; services.pcscd.enable = true; + environment.systemPackages = with pkgs; [ + yubikey-manager + yubico-piv-tool + ]; }