summary refs log tree commit diff stats
path: root/nix/.config/nixpkgs/config.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/.config/nixpkgs/config.nix')
-rw-r--r--nix/.config/nixpkgs/config.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/nix/.config/nixpkgs/config.nix b/nix/.config/nixpkgs/config.nix
index 3b50693..dc4e40a 100644
--- a/nix/.config/nixpkgs/config.nix
+++ b/nix/.config/nixpkgs/config.nix
@@ -2,7 +2,10 @@
   packageOverrides = super: let
     self = super.pkgs;
   in with self; rec {
-    myEmacs = super.callPackage ./emacs.nix {};
+    myEmacs = super.callPackage ./emacs.nix {
+      emacs = if stdenv.isDarwin then emacs25Macport else emacs;
+    };
+    nodejs = pkgs.nodejs-8_x;
   };
 
   allowUnfree = true;