all repos — nixfiles @ 0f6e5efe6b8d2418fef02755dae1ae2c1bb823e8

System and user configuration, managed by nix and home-manager

Fix Emacs triggering XCode installer popups
Alan Pearce alan@alanpearce.eu
Mon, 17 Apr 2023 09:24:58 +0200
commit

0f6e5efe6b8d2418fef02755dae1ae2c1bb823e8

parent

53b7c75e7ac69f059444963adf6f5ceb9d96bd8f

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M user/settings/emacs.nixuser/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 = [