aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2023-03-24 08:57:26 +0100
committerKarel Kočí <cynerd@email.cz>2023-03-24 08:57:26 +0100
commita89f72fb3ed3c7103a34727911d04e891acc6040 (patch)
tree9e6f6279c05690c8bce0f079904e339bac56290c
parent4eef4d6a2daea5ae8ab7ddd18b411ef151196d96 (diff)
downloadshellrc-a89f72fb3ed3c7103a34727911d04e891acc6040.tar.gz
shellrc-a89f72fb3ed3c7103a34727911d04e891acc6040.tar.bz2
shellrc-a89f72fb3ed3c7103a34727911d04e891acc6040.zip
pkgs/shellrc-user-setup: use profiles instead for interactive sessions
-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
'';
};