From ce3fc00030ce6b8169b5499150089a28f2cbeca2 Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Wed, 12 Apr 2023 18:41:00 -0400 Subject: [PATCH] Changed devShell to nix shell --- homeConfig/dotfiles/bash/bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeConfig/dotfiles/bash/bashrc b/homeConfig/dotfiles/bash/bashrc index 4f3efc6..dae009c 100644 --- a/homeConfig/dotfiles/bash/bashrc +++ b/homeConfig/dotfiles/bash/bashrc @@ -9,7 +9,7 @@ is_ssh_session() { # PS1 Config if [ -n "${IN_NIX_SHELL:+x}" ]; then - PS1="\[\033[01;34m\]\w\[\033[00m\]\n\[\033[01;32m\]devShell > \[\033[00m\]" + PS1="\[\033[01;34m\]\w\[\033[00m\]\n\[\033[01;32m\]nix shell > \[\033[00m\]" else if ! is_ssh_session; then PS1="\n\[\033[01;34m\]\w\[\033[00m\]\n\[\033[01;32m\]> \[\033[00m\]"