dotfiles/home/modules/cli/shell/nushell/default.nix

16 lines
266 B
Nix
Raw Normal View History

2024-10-06 15:25:05 -05:00
{
programs.nushell = {
enable = true;
configFile.text = ''
2025-01-08 19:06:14 -06:00
sleep 7ms
2024-10-06 15:25:05 -05:00
$env.config = {show_banner: false}
'';
2024-12-19 19:56:45 -06:00
shellAliases = {
y = "yy";
lg = "lazygit";
2025-01-08 19:06:14 -06:00
yt = "yt-dlp --embed-chapters";
ze = "zellij";
2024-12-19 19:56:45 -06:00
};
2024-10-06 15:25:05 -05:00
};
}