dotfiles/home-manager/modules/nushell.nix

9 lines
125 B
Nix
Raw Normal View History

2024-10-06 15:25:05 -05:00
{
programs.nushell = {
enable = true;
configFile.text = ''
$env.config = {show_banner: false}
'';
};
}