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

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