From 7a76a2ae2038e6374e73556df8a10bb57fae68c4 Mon Sep 17 00:00:00 2001 From: matthme <36768177+matthme@users.noreply.github.com> Date: Fri, 18 Oct 2024 05:10:50 +0200 Subject: [PATCH] feat(nix): add shell hook (#280) --- flake.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/flake.nix b/flake.nix index be5d3c3d..a7f06271 100644 --- a/flake.nix +++ b/flake.nix @@ -21,6 +21,10 @@ # add further packages from nixpkgs pkgs.nodejs ]; + + shellHook = '' + export PS1='\[\033[1;34m\][holonix:\w]\$\[\033[0m\] ' + ''; }; }; };