mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 08:39:42 -04:00
32 lines
870 B
Bash
32 lines
870 B
Bash
# Function to check if the current shell is an SSH session
|
|
is_ssh_session() {
|
|
if [ -n "$SSH_CLIENT" ] || [ -n "$SSH_TTY" ]; then
|
|
return 0
|
|
else
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
# PS1 Config
|
|
if [ -n "${IN_NIX_SHELL:+x}" ]; then
|
|
PS1="\[\033[01;34m\]\w\[\033[00m\]\n\[\033[01;32m\]nixShell > \[\033[00m\]"
|
|
else
|
|
if ! is_ssh_session; then
|
|
PS1="\n\[\033[01;34m\]\w\[\033[00m\]\n\[\033[01;32m\]> \[\033[00m\]"
|
|
else
|
|
PS1="\n\[\033[01;34m\]\w\[\033[00m\]\n\[\033[01;32m\]\u@\h:\[\033[00m\] "
|
|
fi
|
|
fi
|
|
|
|
# Locate and source the bash-completion scripts
|
|
bash_completion_dir="$HOME/.nix-profiles/share/bash-completion/completions"
|
|
if [ -d "$bash_completion_dir" ]; then
|
|
for file in "$bash_completion_dir"/*; do
|
|
source "$file" 2>/dev/null
|
|
done
|
|
fi
|
|
|
|
# Set EDITOR to nvim
|
|
export EDITOR=/nix/store/z67k4yagrajl6gwm50wafcblgkw8pa23-home-manager-path/bin/nvim
|
|
|
|
alias ls='lsd'
|