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

21 lines
368 B
Nix
Executable file

{ 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";
};
};
}