all repos — nixfiles @ ad4197f2e45fe1706d6ef0ccd3518244f545617c

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

nix: Use node 8 for node packages

Alan Pearce
commit

ad4197f2e45fe1706d6ef0ccd3518244f545617c

parent

67259c20e4abc05c4df23afeab021358f0ef1566

1 file changed, 4 insertions(+), 1 deletion(-)

jump to
M nix/.config/nixpkgs/config.nixnix/.config/nixpkgs/config.nix
@@ -2,7 +2,10 @@ { pkgs }: {
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;