summary refs log tree commit diff stats
path: root/nix/.config/nixpkgs/config.nix
blob: dc4e40a2b3da80b7768a8e6f5a0f2f6219bb9bbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ pkgs }: {
  packageOverrides = super: let
    self = super.pkgs;
  in with self; rec {
    myEmacs = super.callPackage ./emacs.nix {
      emacs = if stdenv.isDarwin then emacs25Macport else emacs;
    };
    nodejs = pkgs.nodejs-8_x;
  };

  allowUnfree = true;
}