about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-03-10T22·06+0000
committerWilliam Carroll <wpcarro@gmail.com>2020-03-10T23·07+0000
commit82b2c8c27c7b220dda33dbce70b73b26daa4edde (patch)
tree03fc35db0697870e56cec46621cd0366d1f12767
parentad77311c94224fcb039995b2e5941ff399e83c8e (diff)
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.
-rw-r--r--configs/.profile3
1 files changed, 0 insertions, 3 deletions
diff --git a/configs/.profile b/configs/.profile
index a98e049083f1..a7119b968ade 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 &