aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pkgs.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs.nix b/pkgs.nix
index 81104e7..d9b1074 100644
--- a/pkgs.nix
+++ b/pkgs.nix
@@ -40,12 +40,12 @@
cmdbash='eval $(shellrc-bash)'
cmdzsh='eval $(shellrc-zsh)'
if command -v shellrc-bash 2>/dev/null >&2 \
- && ! grep -qxF "$cmdbash" ~/.bashrc 2>/dev/null; then
- echo "$cmdbash" >>~/.bashrc
+ && ! grep -qxF "$cmdbash" ~/.profile 2>/dev/null; then
+ echo "$cmdbash" >>~/.profile
fi
if command -v shellrc-zsh 2>/dev/null >&2 \
- && ! grep -qxF "$cmdzsh" ~/.zshrc 2>/dev/null; then
- echo "$cmdzsh" >>~/.zshrc
+ && ! grep -qxF "$cmdzsh" ~/.zprofile 2>/dev/null; then
+ echo "$cmdzsh" >>~/.zprofile
fi
'';
};