12 lines
211 B
Nix
12 lines
211 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.gpg.enable = true;
|
|
|
|
services.gpg-agent = {
|
|
enable = true;
|
|
enableBashIntegration = true;
|
|
enableZshIntegration = true;
|
|
pinentry.package = pkgs.pinentry-curses;
|
|
};
|
|
}
|