From c9b161e17d558048d1d4cd9487aaf332eab2c3c5 Mon Sep 17 00:00:00 2001 From: Florian Schmitt Date: Thu, 11 Jan 2024 21:51:15 +0300 Subject: [PATCH] fix(cli) : zsh with plugins --- modules/home-config.nix | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/modules/home-config.nix b/modules/home-config.nix index 0db8d6e..b412bd3 100644 --- a/modules/home-config.nix +++ b/modules/home-config.nix @@ -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"; - #}; + }; }; };