diff --git a/_zshrc b/_zshrc index d210f2b..dda566f 100755 --- a/_zshrc +++ b/_zshrc @@ -30,11 +30,8 @@ function zle-keymap-select { } zle -N zle-keymap-select -if [ -f "$HOME/./config/bashrc" ]; then - emulate sh -c "source $HOME/./config/bashrc" -else - [ -f "$HOME/.bashrc" ] && emulate sh -c "source $HOME/.bashrc" -fi +[ -f "$HOME/./config/bashrc" ] && emulate sh -c "source $HOME/./config/bashrc" +[ -f "$HOME/.bashrc" ] && emulate sh -c "source $HOME/.bashrc" [ -f "/usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" ] && source "/usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" [ -f "/usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh" ] && source "/usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh" diff --git a/flake.nix b/flake.nix index 19d64ac..dbf71a3 100644 --- a/flake.nix +++ b/flake.nix @@ -42,13 +42,6 @@ programs.home-manager.enable = true; - programs.bash = { - enable = true; - initExtra = '' - exec zsh - ''; - }; - programs.zsh = { enable = true;