From 67100d56d57ca92b35601ce57a46153dcf6cbbf3 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Sun, 7 Sep 2025 08:50:24 +0200 Subject: [PATCH] Nushell: add plugins --- modules/hm/nushell.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/hm/nushell.nix b/modules/hm/nushell.nix index 9ef533b..df7684d 100644 --- a/modules/hm/nushell.nix +++ b/modules/hm/nushell.nix @@ -1,9 +1,14 @@ -{ +{ pkgs, ... }: { programs.nushell = { enable = true; extraConfig = '' $env.config.show_banner = false ''; envFile.text = ""; + plugins = with pkgs.nushellPlugins;[ + formats + polars + query + ]; }; }