diff options
Diffstat (limited to 'packages')
-rw-r--r-- | packages/emacs.nix | 8 |
1 files 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 |