From f955dd70a9eee939af8c9f8185ce9532e6b694ef Mon Sep 17 00:00:00 2001 From: Emil Ivanichkov Date: Mon, 22 Jan 2024 16:18:29 +0200 Subject: [PATCH] build(nix): Add shell hook with banner --- flake.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/flake.nix b/flake.nix index 327bc02b..a738f154 100644 --- a/flake.nix +++ b/flake.nix @@ -17,7 +17,14 @@ nodejs yarn-berry python3 + + figlet ]; + shellHook = '' + if [ "''${DISABLE_DEVSHELL_BANNER:-}" != true ]; then + figlet "Welcome to Nimbus-GUI" + fi + ''; }; }; };