Enable zsh
This commit is contained in:
15
home.nix
15
home.nix
@@ -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
|
||||||
];
|
];
|
||||||
|
Reference in New Issue
Block a user