From 2da03d7c12a7744895faa8add67bb7750f8b72fe Mon Sep 17 00:00:00 2001 From: Jurn Wubben Date: Thu, 10 Jul 2025 20:52:45 +0200 Subject: [PATCH] Home: removed fish greeting --- home/shell/fish.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/home/shell/fish.nix b/home/shell/fish.nix index 958da57..4b6fdf7 100644 --- a/home/shell/fish.nix +++ b/home/shell/fish.nix @@ -1,3 +1,8 @@ { - programs.fish.enable = true; + programs.fish = { + enable = true; + interactiveShellInit = '' + set fish_greeting + ''; + }; }