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

22 lines
368 B
Nix
Raw Normal View History

2025-10-01 19:51:55 -05:00
{ flake, config, ... }:
let
inherit (flake.config.people) user0;
user = config.home.username;
in
{
programs.nushell = {
enable = true;
configFile.text = ''
sleep 7ms
$env.config = {show_banner: false}
'';
shellAliases = {
y = "yy";
lg = "lazygit";
yt = "yt-dlp --embed-chapters";
ze = "zellij";
};
};
}