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

{ environment.systemPackages = with pkgs; [
    mercurial
    gitAndTools.hub

    ag
    ripgrep

    httpie

    nodePackages.js-yaml
  ];
}