mirror of
https://github.com/CHN-beta/nixos.git
synced 2026-01-12 01:29:24 +08:00
11 lines
228 B
Bash
11 lines
228 B
Bash
if [ -f /etc/bashrc ]; then
|
|
. /etc/bashrc
|
|
fi
|
|
|
|
if [ -z "${BASHRC_SOURCED-}" ]; then
|
|
export PATH=$HOME/.nix/state/gcroots/current/bin:$HOME/bin:$PATH
|
|
ulimit -s unlimited
|
|
export HISTFILESIZE=1000000
|
|
export BASHRC_SOURCED=1
|
|
fi
|