Fix Emacs triggering XCode installer popups
Alan Pearce alan@alanpearce.eu
Mon, 17 Apr 2023 09:24:58 +0200
1 files changed, 2 insertions(+), 2 deletions(-)
jump to
M user/settings/emacs.nix → user/settings/emacs.nix
@@ -7,7 +7,7 @@ let inherit (pkgs) stdenv; darwinPath = pkgs.runCommandLocal "path_helper " { } '' - eval $(/usr/libexec/path_helper -s) + eval $(/usr/libexec/path_helper) echo -n $PATH > $out ''; @@ -167,7 +167,7 @@ (with-eval-after-load 'files (setq insert-directory-program "${pkgs.coreutils-prefixed}/bin/gls")) (with-eval-after-load 'dired (setq dired-use-ls-dired t)) - (setq exec-path (parse-colon-path (setenv "PATH" "${pkgs.lib.readFile darwinPath}"))) + (setq exec-path (parse-colon-path (setenv "PATH" "${pkgs.clang}/bin:${pkgs.gcc}/bin:${pkgs.lib.readFile darwinPath}"))) ''; }; home.packages = [