aboutsummaryrefslogtreecommitdiff
path: root/gui/apps/dev.nix
blob: c56b346d1c9d01dfc09687dc6ecbbe474b47eff9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ pkgs, pkgs-unstable, ... }:

{
  home = {
    packages = with pkgs; [
    # UI dev utilities (language environments are maintained in project specific nix-shells)
      hotspot
      kcachegrind
      pkgs-unstable.paraview
      meld
    # language utilities
      artha
    # calculator
      speedcrunch
    # ctag to override the emacs provided ones (placeholder)
      universal-ctags
      fzf
    ];
  };

  home.file.".ctags.d/exclude.ctags".text = ''
    --exclude=*.html
    --exclude=.git
    --exclude=.gcroots
  '';
}