11 lines
176 B
Nix
11 lines
176 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
services.pcscd.enable = true;
|
|
programs.gnupg.agent = {
|
|
enable = true;
|
|
pinentryPackage = pkgs.pinentry-curses;
|
|
enableSSHSupport = true;
|
|
};
|
|
}
|