From a65c26768737542df1b372ffce8caf9b9799ca0f Mon Sep 17 00:00:00 2001 From: 0xWheatyz Date: Sun, 22 Feb 2026 12:27:16 -0500 Subject: [PATCH] chore: update Nix shell prompt configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace PS1 export with NIX_PROJECT_SHELL environment variable for better integration with shell prompt configurations. Also add trailing newline to flake.nix for proper formatting. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 8a557af..90d8ab6 100644 --- a/flake.nix +++ b/flake.nix @@ -48,8 +48,8 @@ fi # Prompt tweak so you can see when venv is active - export PS1="(SPARC-venv) $PS1" + export NIX_PROJECT_SHELL="SPARC" ''; }; }); -} \ No newline at end of file +}