From af9f08294dafbc9ed91e7b8194867bb434d8e9df Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Tue, 11 Mar 2025 12:48:51 +0530 Subject: [PATCH] feat: Add nushell plugins and remove zsh and bash from nix in kuro --- darwin/kuro/configuration.nix | 4 ++-- home/programs/nushell.nix | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/darwin/kuro/configuration.nix b/darwin/kuro/configuration.nix index ae648425..2dfbaccd 100644 --- a/darwin/kuro/configuration.nix +++ b/darwin/kuro/configuration.nix @@ -56,8 +56,8 @@ # '') # ]; - # programs.bash.enable = true; - programs.zsh.enable = true; + programs.bash.enable = false; + programs.zsh.enable = false; programs.fish.enable = true; # services.nix-daemon.enable = true; diff --git a/home/programs/nushell.nix b/home/programs/nushell.nix index bdbcf6f8..80aa7354 100644 --- a/home/programs/nushell.nix +++ b/home/programs/nushell.nix @@ -11,6 +11,11 @@ yy = "yazi"; cat = "bat"; }; + plugins = with pkgs.nushellPlugins; [ + formats + polars + highlight + ]; extraConfig = '' ${pkgs.pfetch-rs}/bin/pfetch '';