fix(cli) : zsh with plugins

This commit is contained in:
Florian Schmitt 2024-01-11 21:51:15 +03:00
parent 551cb398f5
commit c9b161e17d

View file

@ -220,17 +220,14 @@ in {
nixclean = "sudo nix-env --delete-generations old --profile /nix/var/nix/profiles/system && sudo /nix/var/nix/profiles/system/bin/switch-to-configuration switch && sudo nix-store --gc";
};
initExtra = ''
plugins=(git ssh-agent)
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"
'';
#shellInit = "cd ~/Developpements;";
#ohMyZsh = {
# enable = true;
# plugins = [ "git" "ssh-agent" ];
oh-my-zsh = {
enable = true;
plugins = [ "git" "ssh-agent" ];
# theme = "robbyrussell";
#};
};
};
};