From bbd3d42bfd89336ac0c969586af196dbfe6b2b25 Mon Sep 17 00:00:00 2001 From: Oshgnacknak Date: Sun, 7 Sep 2025 01:48:47 +0200 Subject: [PATCH] flake --- _zshrc | 7 ++----- flake.nix | 7 ------- 2 files changed, 2 insertions(+), 12 deletions(-) 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;