From 823d700f1fe75785008afdd5a8c6625c3a10efd6 Mon Sep 17 00:00:00 2001 From: clerie Date: Mon, 15 Apr 2024 09:13:57 +0200 Subject: [PATCH] configuration/gpg-ssh: Enable YubiKey support --- configuration/gpg-ssh/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configuration/gpg-ssh/default.nix b/configuration/gpg-ssh/default.nix index e3daea7..1c29905 100644 --- a/configuration/gpg-ssh/default.nix +++ b/configuration/gpg-ssh/default.nix @@ -10,6 +10,7 @@ environment.systemPackages = with pkgs; [ gnupg + yubikey-personalization # Add wrapper around ssh that takes the gnupg ssh-agent # instead of gnome-keyring @@ -18,4 +19,7 @@ services.pcscd.enable = true; + services.udev.packages = with pkgs; [ + yubikey-personalization + ]; }