summary refs log tree commit diff stats
path: root/modules/javascript.nix
blob: d950fe534e6f13417f78854beebda571b92b28e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, pkgs, ... }:

let
  pkgsUnstable = import <nixos-unstable> {};
  # pkgsUnstable = pkgs;
in
{ environment.systemPackages = with pkgs; [
    nodejs-8_x
    pkgsUnstable.nodePackages.yarn
    pkgsUnstable.nodePackages.tern
  ];
}