From 6d6c3975f54076349a4e9d20e2b02a050c55b73f Mon Sep 17 00:00:00 2001 From: TheGeneralist <180094941+thegeneralist01@users.noreply.github.com> Date: Sat, 14 Feb 2026 17:11:34 +0100 Subject: [PATCH] fix pnpm path --- modules/common/neovim.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/common/neovim.nix b/modules/common/neovim.nix index bcaf944..4230d2b 100644 --- a/modules/common/neovim.nix +++ b/modules/common/neovim.nix @@ -66,7 +66,7 @@ in # TODO: the two from the last (below) should be somehow moved to their own files home.sessionVariables.PNPM_HOME = - if config.inDarwin then "$HOME/Library/pnpm" else "$HOME/.local/share/pnpm"; + if config.isDarwin then "$HOME/Library/pnpm" else "$HOME/.local/share/pnpm"; home.sessionPath = [ "node_modules/.bin"