From a7bcfae0aa7c37a5a45cb028040f7d9581d0948e Mon Sep 17 00:00:00 2001 From: Nickiel12 <35903114+Nickiel12@users.noreply.github.com> Date: Tue, 11 Oct 2022 13:24:33 -0700 Subject: [PATCH] EXP!: possible consolidation of powerline10k --- modules/zsh.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/modules/zsh.nix b/modules/zsh.nix index c2e8c2f..3eb5791 100644 --- a/modules/zsh.nix +++ b/modules/zsh.nix @@ -4,6 +4,10 @@ let in { + + home.packages = with.pkgs; [ + zsh-powerlevel10k + ]; programs.zsh = { enable = true; # technically also enabled in user shell @@ -13,11 +17,6 @@ in neofetch ''; - initExtra = '' - [[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh - ''; - - autocd = true; history = { @@ -31,7 +30,6 @@ in { name = "powerline10k"; src = pkgs.zsh-powerlevel10k; - file = "share/zsh-powerlevel10k/powerlevel10k.zsh-theme"; } ]; };