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"; 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 = '' initExtra = ''
plugins=(git ssh-agent)
export BUN_INSTALL="$HOME/.bun" export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH" export PATH="$BUN_INSTALL/bin:$PATH"
''; '';
#shellInit = "cd ~/Developpements;"; oh-my-zsh = {
#ohMyZsh = { enable = true;
# enable = true; plugins = [ "git" "ssh-agent" ];
# plugins = [ "git" "ssh-agent" ];
# theme = "robbyrussell"; # theme = "robbyrussell";
#}; };
}; };
}; };