From 4c38c9b2b48240aa7cf2fe1bd8d3898ce6d055a8 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sun, 7 Jan 2024 22:15:09 -0500 Subject: [PATCH] shells/fish,nushell: disable greetings --- users/modules/global/shells/fish.nix | 1 + users/modules/global/shells/nushell.nix | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/users/modules/global/shells/fish.nix b/users/modules/global/shells/fish.nix index 3f73898..8addee3 100644 --- a/users/modules/global/shells/fish.nix +++ b/users/modules/global/shells/fish.nix @@ -8,6 +8,7 @@ shellAbbrs = { }; interactiveShellInit = '' kitty + complete setup fish | source + set -U fish_greeting ''; }; diff --git a/users/modules/global/shells/nushell.nix b/users/modules/global/shells/nushell.nix index c66abbf..4ba52bb 100644 --- a/users/modules/global/shells/nushell.nix +++ b/users/modules/global/shells/nushell.nix @@ -1,5 +1,10 @@ { ... }: { programs.nushell = { enable = true; + extraConfig = '' + $env.config = { + show_banner: false + } + ''; }; }