diff options
-rw-r--r-- | user/emacs/.emacs.d/main.el | 8 | ||||
-rw-r--r-- | user/modules/emacs.nix | 2 |
2 files changed, 0 insertions, 10 deletions
diff --git a/user/emacs/.emacs.d/main.el b/user/emacs/.emacs.d/main.el index 4ee62507..4a30df6a 100644 --- a/user/emacs/.emacs.d/main.el +++ b/user/emacs/.emacs.d/main.el @@ -8,14 +8,6 @@ (setq use-package-expand-minimally t)) (setq use-package-always-demand (daemonp)) -(use-package exec-path-from-shell - :if (eq system-type 'darwin) - :commands (exec-path-from-shell-initialize) - :custom ((exec-path-from-shell-arguments nil) - (exec-path-from-shell-debug t)) - :init (progn - (exec-path-from-shell-initialize))) - ;;; Customize (setq custom-file "~/.emacs.d/custom.el") diff --git a/user/modules/emacs.nix b/user/modules/emacs.nix index 10c87eeb..b6ac0395 100644 --- a/user/modules/emacs.nix +++ b/user/modules/emacs.nix @@ -138,8 +138,6 @@ in ws-butler which-key yaml-mode - ] ++ lib.optionals stdenv.isDarwin [ - exec-path-from-shell ] ++ lib.optionals (!stdenv.isDarwin) [ pkgs.mu ]); |