Files
2025-05-07 19:25:40 +02:00

14 lines
326 B
Nix

{ pkgs, homeDirectory, ... }:
{
services = {
gpg-agent = {
enable = true;
enableSshSupport = true;
pinentry.package = pkgs.pinentry-gnome3;
};
# fix pinentry on non-gnome with this in
# the system config: services.dbus.packages = with pkgs; [ gcr ];
gnome-keyring.enable = true;
};
}