From ceef6ab64151b3080ebbc2baf6b8f967bb68da15 Mon Sep 17 00:00:00 2001 From: Yan Lin Date: Sat, 26 Jul 2025 22:46:25 +0200 Subject: [PATCH] Fix project launcher path resolution for shell aliases MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change projectLauncher from relative to absolute path - Fixes issue where proj alias was not being created - Enables project shortcuts: proj, blog, mdshortcut, nix-config 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- modules/zsh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/zsh.nix b/modules/zsh.nix index 5a04489..57a1e18 100644 --- a/modules/zsh.nix +++ b/modules/zsh.nix @@ -2,7 +2,7 @@ let projectsConfig = import ../config/projects.nix; - projectLauncher = ../scripts/project-launcher.sh; + projectLauncher = "/Users/yanlin/.config/nix/scripts/project-launcher.sh"; in { programs.zsh = {