all repos — archive/dotfiles @ 60a00fda542594d6743df058923501f071bb2836

Superseded by nixfiles

Merge branch 'master' of ssh://alanpearce.eu/dotfiles

Alan Pearce
commit

60a00fda542594d6743df058923501f071bb2836

parent

93f2165cb0a1ecaff5ca40784d5c88d18a3657b4

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

changed files
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;