diff options
author | William Carroll <wpcarro@gmail.com> | 2020-03-10T22·06+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-03-10T23·07+0000 |
commit | 82b2c8c27c7b220dda33dbce70b73b26daa4edde (patch) | |
tree | 03fc35db0697870e56cec46621cd0366d1f12767 /configs | |
parent | ad77311c94224fcb039995b2e5941ff399e83c8e (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.
Diffstat (limited to 'configs')
-rw-r--r-- | configs/.profile | 3 |
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 & |