26 lines
463 B
Nix
26 lines
463 B
Nix
{ pkgs, lib, ... }:
|
|
|
|
{
|
|
|
|
programs.gnupg.agent = {
|
|
enable = true;
|
|
enableSSHSupport = true;
|
|
pinentryPackage = lib.mkDefault pkgs.pinentry-curses;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
gnupg
|
|
yubikey-personalization
|
|
|
|
# Add wrapper around ssh that takes the gnupg ssh-agent
|
|
# instead of gnome-keyring
|
|
ssh-gpg
|
|
];
|
|
|
|
services.pcscd.enable = true;
|
|
|
|
services.udev.packages = with pkgs; [
|
|
yubikey-personalization
|
|
];
|
|
}
|