From abfd7c1dc8812bf373e727dfdfa628c80319809e Mon Sep 17 00:00:00 2001 From: Aria Nolan Date: Tue, 6 Feb 2024 20:45:35 -0500 Subject: [PATCH] readd ssh-add to bash login --- users/tacocat/shell/bash.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/users/tacocat/shell/bash.nix b/users/tacocat/shell/bash.nix index 7e5b38e..017f72e 100644 --- a/users/tacocat/shell/bash.nix +++ b/users/tacocat/shell/bash.nix @@ -3,6 +3,11 @@ enable = true; enableCompletion = true; enableVteIntegration = true; + profileExtra = '' + ssh-add ~/.ssh/git_school + ssh-add ~/.ssh/git_personal + ssh-add ~/.ssh/id_ed25519 + ''; bashrcExtra = '' PS1='[\u@\h \W]\$ '