Files
TheaninovOS/home/services/default.nix
2024-03-26 17:44:14 +01:00

13 lines
325 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;
};
}