shells/fish,nushell: disable greetings

This commit is contained in:
Infinidoge 2024-01-07 22:15:09 -05:00
parent 7cf43db45a
commit 4c38c9b2b4
Signed by: Infinidoge
SSH key fingerprint: SHA256:oAMyvotlNFraMmZmr+p6AxnNfW/GioTs1pOn3V4tQ7A
2 changed files with 6 additions and 0 deletions

View file

@ -8,6 +8,7 @@
shellAbbrs = { };
interactiveShellInit = ''
kitty + complete setup fish | source
set -U fish_greeting
'';
};

View file

@ -1,5 +1,10 @@
{ ... }: {
programs.nushell = {
enable = true;
extraConfig = ''
$env.config = {
show_banner: false
}
'';
};
}