Files
TheaninovOS/services.nix
2023-11-21 02:53:19 +01:00

12 lines
256 B
Nix

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