remove common aliases from nushell

This commit is contained in:
Ivan Kirilov Dimitrov 2024-07-07 19:10:46 +02:00
parent e521af0b12
commit e6313d810d
No known key found for this signature in database
GPG Key ID: 0BDAD4B211C49294

View File

@ -111,7 +111,7 @@ toplevel@{ moduleWithSystem, ... }: {
nushell = {
enable = true;
environmentVariables = { config = '' { show_banner: false, completions: { quick: false partial: false algorithm: "prefix" } } ''; };
shellAliases = shellAliases // { gcal = '' bash -c "cal $(date +%Y)" ''; la = "ls -al"; dev = "nix develop --command $env.SHELL"; };
shellAliases = { gcal = '' bash -c "cal $(date +%Y)" ''; la = "ls -al"; dev = "nix develop --command $env.SHELL"; };
};
kitty.shellIntegration = { enableBashIntegration = true; enableZshIntegration = true; };
tmux = {