From bb20cf43666aeb3802b9df60d374171aa3addc72 Mon Sep 17 00:00:00 2001 From: "Reid \"reidlab" Date: Mon, 13 May 2024 20:55:41 -0700 Subject: [PATCH] fish greeting --- modules/software/system/fish.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/software/system/fish.nix b/modules/software/system/fish.nix index 6f816de..d514dcf 100644 --- a/modules/software/system/fish.nix +++ b/modules/software/system/fish.nix @@ -24,7 +24,9 @@ in { interactiveShellInit = '' sh ${colorScript} ''; - # TODO: add fish greeting? + functions.fish_greeting = '' + ${lib.getExe pkgs.pfetch} + ''; }; }; }