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 + ]; }; }