all repos — nixfiles @ c5baab42e00a96f1cad8e2dd39aa1d6e5fb6cd17

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

Merge remote-tracking branch 'origin/master'

Alan Pearce
commit

c5baab42e00a96f1cad8e2dd39aa1d6e5fb6cd17

parent

12e113b5d793120df131473e8dd96e385e6be2e6

1 file changed, 16 insertions(+), 0 deletions(-)

changed files
M user/emacs/.emacs.d/init.eluser/emacs/.emacs.d/init.el
@@ -17,6 +17,22 @@ (require 'use-package)
(setq use-package-expand-minimally t)) (setq use-package-always-demand (daemonp)) +(defvar ap/path-configured nil) +(when (and (eq system-type 'darwin) + (not ap/path-configured)) + (setq exec-path + (delete-dups + (append + (parse-colon-path + (elt (split-string-and-unquote + (with-output-to-string + (with-current-buffer standard-output + (call-process "/usr/libexec/path_helper" nil t nil "-s"))) + "[=;]") + 1)) + exec-path)) + ap/path-configured t)) + ;;; Customize (setq custom-file "~/.emacs.d/custom.el")