fish->zsh

This commit is contained in:
mjallen18
2024-06-15 14:17:59 -05:00
parent a1d184a76e
commit d84d6109a1
5 changed files with 45 additions and 8 deletions

View File

@@ -7,9 +7,26 @@
programs.home-manager.enable = true;
programs = {
fish.enable = true;
fish.enable = false;
mangohud.enable = true;
java.enable = true;
zsh = {
enable = true;
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
shellAliases = {
update = "sudo nixos-rebuild switch";
};
oh-my-zsh = {
enable = true;
plugins = [ "git" ];
theme = "fishy";
};
};
};
programs.git = {