#!/usr/bin/env zsh# Make nix shell run zshaliasnix-shell="nix-shell --command zsh"if[-n"$IN_NIX_SHELL"];then# Export shell as zsh instead of bashexportSHELL=zsh
# Add nix-shell prefix to prompt in the same style as python venvPS1PREFIX="(nix-shell) "fi