Files
TheaninovOS/home/services/default.nix
2024-03-24 22:03:41 +01:00

17 lines
331 B
Nix

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