Use a more compatible ssh-agent

This commit is contained in:
Natsu Kagami 2022-06-21 21:15:01 -04:00
parent 7fc1816b54
commit 20fa17d09c
Signed by: nki
GPG key ID: 7306B3D3C3AD6E51
2 changed files with 3 additions and 7 deletions

View file

@ -12,10 +12,11 @@ with lib; {
## Gnome-keyring
services.gnome-keyring = {
enable = true;
components = [ "pkcs11" "secrets" "ssh" ];
components = [ "pkcs11" "secrets" ];
};
services.gpg-agent.enable = true;
services.gpg-agent.pinentryFlavor = "gnome3";
services.gpg-agent.pinentryFlavor = "curses";
services.gpg-agent.enableSshSupport = true;
# Git "safe-directory"
programs.git.extraConfig.safe.directory = [

View file

@ -32,11 +32,6 @@
if test -e /opt/homebrew/bin/brew
/opt/homebrew/bin/brew shellenv | source
end
# Gnome-keyring startup
if type -q gnome-keyring-daemon
set -x (gnome-keyring-daemon | string split "=")
end
'';
interactiveShellInit = ''