gpg changes

This commit is contained in:
Henri Dohmen 2025-05-31 23:27:25 +02:00
parent 7584ff9a39
commit 4718937d1e
2 changed files with 20 additions and 15 deletions

View file

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