all repos — nixfiles @ 899f3d958cd55c81dc26bf431f272c4a5d7c2f0a

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

nix/.config/nixpkgs/config.nix (view raw)

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;
}