Removed zsh, fixed ssh-agent config

This commit is contained in:
2025-05-19 15:36:40 -04:00
parent accefc4a74
commit d457331ea6
3 changed files with 36 additions and 41 deletions

View File

@@ -19,13 +19,14 @@
};
programs.bash = {
enable = false;
shellAliases = {
ll = "ls -l";
".." = "cd ..";
};
enable = true;
enableCompletion = true;
bashrcExtra = ''
export SSH_AUTH_SOCK=/home/chase/.bitwarden-ssh-agent.sock
'';
};
programs.firefox = {
enable = true;
nativeMessagingHosts = [ pkgs.firefoxpwa ];
@@ -109,21 +110,6 @@
programs.git-credential-oauth.enable =true;
programs.zsh = {
enable = true;
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
localVariables = {
SSH_AUTH_SOCK = [ "/home/chase/.bitwarden-ssh-agent.sock" ];
};
shellAliases = {
ll = "ls -l";
".." = "cd ..";
};
history.size = 10000;
};
home.packages = with pkgs; [
runelite
];