blob: a3c8999882c845d66e73641835c3856c1a8908f4 (
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
27
28
29
30
31
32
33
34
|
{ pkgs, pkgs-unstable, ... }:
{
home = {
packages = with pkgs; [
# UI dev utilities (language environments are maintained in project specific nix-shells)
hotspot
kcachegrind
meld
# Visualization and CAD
paraview
(blender.override { cudaSupport=true; })
freecad
meshlab
# language utilities
artha
# calculator
qalculate-gtk
# ctag to override the emacs provided ones (placeholder)
universal-ctags
fzf
];
};
home.file.".ctags.d/exclude.ctags".text = ''
--exclude=*.html
--exclude=.git
--exclude=.gcroots
'';
}
|