thunderbird gpg agent

This commit is contained in:
Henri Dohmen 2025-05-31 12:16:39 +02:00
parent 36d5e995f2
commit 1f65e12585
6 changed files with 93 additions and 20 deletions

View file

@ -1,9 +1,15 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [ seahorse ];
environment.systemPackages = with pkgs; [
seahorse
libsecret
];
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryPackage = pkgs.pinentry-gtk2;
};
services.gnome.gnome-keyring = {
enable = true;
};
}