Removed zsh, fixed ssh-agent config
This commit is contained in:
26
home.nix
26
home.nix
@@ -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
|
||||
];
|
||||
|
Reference in New Issue
Block a user