Nushell: add plugins

This commit is contained in:
Filippo Berto 2025-09-07 08:50:24 +02:00
parent 924892812d
commit 67100d56d5
Signed by: bertof
GPG key ID: 9DBF7E6A1D2CE9ED

View file

@ -1,9 +1,14 @@
{
{ pkgs, ... }: {
programs.nushell = {
enable = true;
extraConfig = ''
$env.config.show_banner = false
'';
envFile.text = "";
plugins = with pkgs.nushellPlugins;[
formats
polars
query
];
};
}