From 741968bd77c35c19cda1d4c0e7d944992dfa9aad Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sun, 30 Jun 2019 12:34:51 +0200 Subject: Emacs: make certain packages macOS-specific --- packages/emacs.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/packages/emacs.nix b/packages/emacs.nix index 8d6c6d0..cc9d883 100644 --- a/packages/emacs.nix +++ b/packages/emacs.nix @@ -9,6 +9,7 @@ let rm $out/share/applications/emacs.desktop ''; }); + stdenv = pkgs.stdenv; emacsWithPackages = (pkgs.emacsPackagesNgGen myEmacs).emacsWithPackages; in @@ -44,7 +45,6 @@ in evil-quickscope evil-space evil-surround - exec-path-from-shell eyebrowse feature-mode flycheck @@ -100,7 +100,11 @@ in wgrep-ag which-key yaml-mode - ]) ++ (with epkgs.elpaPackages; [ + ] ++ (if stdenv.isDarwin then [ + exec-path-from-shell + ns-auto-titlebar + ] else [ + ])) ++ (with epkgs.elpaPackages; [ rainbow-mode ]) ++ [ # From main packages set -- cgit 1.4.1