summaryrefslogtreecommitdiff
path: root/modules/shell.nix
diff options
context:
space:
mode:
authorAmir Saeid <amir@glgdgt.com>2026-06-12 21:52:11 +0100
committerAmir Saeid <amir@glgdgt.com>2026-06-12 21:52:11 +0100
commit01a216a4ac82f785bfcb97000ff815e4016e65f4 (patch)
treed3388f5587dfafb0be4ffc36ec95faa4daa8ee8d /modules/shell.nix
parent22819243682483c27b34b548d6880e6ad2b5333f (diff)
Add ~/.local/bin to PATH
Diffstat (limited to 'modules/shell.nix')
-rw-r--r--modules/shell.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/shell.nix b/modules/shell.nix
index 06f7eda..6b7c2e1 100644
--- a/modules/shell.nix
+++ b/modules/shell.nix
@@ -28,6 +28,7 @@
enable = true;
enableCompletion = true;
initContent = ''
+ export PATH="$HOME/.local/bin:$PATH"
bindkey '\e.' insert-last-word
if java_home=$(cs java-home --jvm 21 2>/dev/null); then
export JAVA_HOME="$java_home"