11 lines
178 B
Nix
11 lines
178 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.gpg.enable = true;
|
|
services.gpg-agent = {
|
|
enable = true;
|
|
enableFishIntegration = true;
|
|
pinentry.package = pkgs.pinentry-curses;
|
|
};
|
|
}
|