dotfiles/home/modules/nushell.nix

13 lines
191 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}
'';
2024-12-19 19:56:45 -06:00
shellAliases = {
y = "yy";
lg = "lazygit";
};
2024-10-06 15:25:05 -05:00
};
}