From 2edcaca6b47e6adb98020545fd89a3516377cae9 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Mon, 7 Sep 2020 19:49:44 +0100 Subject: [PATCH] Expose path to GOOGLE_BRIEFCASE as env var After ~1-2 hours of debugging, I realized that locally I was reading from .envrc but when Emacs initializes, it is not reading from .envrc. I don't know how to ideally handle this, so for now I'm including GOOGLE_BRIEFCASE as an environment variable and moving on with my life. --- emacs/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/emacs/default.nix b/emacs/default.nix index 062bb5ee2..ff4e4cad8 100644 --- a/emacs/default.nix +++ b/emacs/default.nix @@ -144,6 +144,7 @@ let writeShellScriptBin "wpcarros-emacs" '' export XMODIFIERS=emacs export BRIEFCASE=${briefcasePath} + export GOOGLE_BRIEFCASE="$HOME/google-briefcase" export PATH="${emacsBinPath}:$PATH" export EMACSLOADPATH="${loadPath}" exec ${emacsBin} \