mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-11 02:56:27 +00:00
13 lines
325 B
Nix
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;
|
|
};
|
|
}
|