aboutsummaryrefslogtreecommitdiff
path: root/gui/apps/dev.nix
blob: 4f3bf2e30508c5675c10c7e49cb381170a77c8cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ pkgs, ... }:

{
  home = {
    packages = with pkgs; [
    # UI dev utilities (language environments are maintained in project specific nix-shells)
      zeal
      hotspot
      qcachegrind
      gitg
      paraview
    # language utilities
      artha
    ];
  };
}