diff --git a/home-manager/features/cli/zsh/default.nix b/home-manager/features/cli/zsh/default.nix index 1d387d5..f963dad 100644 --- a/home-manager/features/cli/zsh/default.nix +++ b/home-manager/features/cli/zsh/default.nix @@ -2,9 +2,9 @@ cli = import ../aliases.nix; in { home.packages = with pkgs; [ - # zsh-autosuggestions - # zsh-powerlevel10k - # zsh-prezto + zsh-autosuggestions + zsh-powerlevel10k + zsh-prezto ]; programs.zsh = { @@ -39,17 +39,17 @@ in { # ]; # }; - oh-my-zsh = { - enable = true; - plugins = [ "git" "vi-mode" ]; - }; - - prezto = { - enable = true; - tmux = { - autoStartLocal = true; - autoStartRemote = true; - }; - }; + # oh-my-zsh = { + # enable = true; + # plugins = [ "git" "vi-mode" ]; + # }; + # + # prezto = { + # enable = true; + # tmux = { + # autoStartLocal = true; + # autoStartRemote = true; + # }; + # }; }; } diff --git a/hosts/common/services.nix b/hosts/common/services.nix index 59951dd..c00b6c4 100644 --- a/hosts/common/services.nix +++ b/hosts/common/services.nix @@ -10,7 +10,7 @@ # I use zsh btw environment.shells = with pkgs; [ bash zsh ]; users.defaultUserShell = pkgs.zsh; - programs.zsh.enable = true; + # programs.zsh.enable = true; # Configure console keymap console.keyMap = "pl2";