12 lines
204 B
Nix
12 lines
204 B
Nix
{ ... }: {
|
|
programs.gpg = {
|
|
enable = true;
|
|
};
|
|
|
|
services.gpg-agent = {
|
|
enable = true;
|
|
enableBashIntegration = true;
|
|
enableZshIntegration = true;
|
|
pinentryFlavor = "gnome3";
|
|
};
|
|
}
|