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