Enable zsh

This commit is contained in:
2025-05-14 23:48:26 -04:00
parent a74e70c7f5
commit c83087cc8d

View File

@@ -11,7 +11,7 @@
}; };
programs.bash = { programs.bash = {
enable = true; enable = false;
shellAliases = { shellAliases = {
ll = "ls -l"; ll = "ls -l";
".." = "cd .."; ".." = "cd ..";
@@ -101,6 +101,19 @@
programs.git-credential-oauth.enable =true; programs.git-credential-oauth.enable =true;
programs.zsh = {
enable = true;
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
shellAliases = {
ll = "ls -l";
".." = "cd ..";
};
history.size = 10000;
};
home.packages = with pkgs; [ home.packages = with pkgs; [
runelite runelite
]; ];