dotfiles/home/modules/nushell.nix
2024-12-19 19:56:45 -06:00

12 lines
191 B
Nix
Executable file

{
programs.nushell = {
enable = true;
configFile.text = ''
$env.config = {show_banner: false}
'';
shellAliases = {
y = "yy";
lg = "lazygit";
};
};
}