all repos — archive/nixos-configuration @ 18c8166b4feaae28e604cd2958e3696c49b77b69

Superseded by nixfiles

modules/development/javascript.nix (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ config, pkgs, ... }:

{ environment.systemPackages = with pkgs.unstable; [
    nodejs-8_x
    phantomjs2
    yarn
    nodePackages.tern
    nodePackages.node2nix
    nodePackages.nodemon
    nodePackages.eslint_d

    autoconf
    automake
    gcc
    gnumake
  ];
}