11 lines
154 B
Nix
11 lines
154 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
programs.gnupg.agent = {
|
|
enable = true;
|
|
pinentryPackage = pkgs.pinentry-gnome3;
|
|
enableSSHSupport = true;
|
|
};
|
|
|
|
}
|