nix-dotfiles/hm/nushell.nix

14 lines
243 B
Nix

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