From 82b2c8c27c7b220dda33dbce70b73b26daa4edde Mon Sep 17 00:00:00 2001 From: William Carroll Date: Tue, 10 Mar 2020 22:06:00 +0000 Subject: [PATCH] Remove ssh-agent code from .profile TIL: gpg-agent sets the SSH_AUTH_SOCK and other values. Since I already use home-manager to start gpg-agent and SSH has been functioning without issues, I'm removing the obsolete ssh-agent code. --- configs/.profile | 3 --- 1 file changed, 3 deletions(-) diff --git a/configs/.profile b/configs/.profile index a98e04908..a7119b968 100644 --- a/configs/.profile +++ b/configs/.profile @@ -34,9 +34,6 @@ export ALTERNATE_EDITOR=nvim # See this thread for more details: https://github.com/NixOS/nixpkgs/issues/8398 export LOCALE_ARCHIVE="$(readlink ~/.nix-profile/lib/locale)/locale-archive" -# Start ssh-agent -eval "$(ssh-agent -s)" - # TODO: Prefer `systemctl start docker.service` # dockerd &