summaryrefslogtreecommitdiff
path: root/system/packages.nix
blob: 44d138fe84806a8fc82d32dc354bd7d4c06d0890 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{ config, pkgs, ... }:
{
  # System packages
  environment.systemPackages = with pkgs; [
     #texFull
     ag
     apg
     aria2
     aspell
     aspellDicts.en
     autogen
     bash-completion
     bashInteractive
     bazaar
     cacert
     chromium
     clamav
     clementine
     cryptsetup
     dejavu_fonts
     diffstat
     diffutils
     ditaa
     dnsutils
     docker
     docker-compose
     dot2tex
     doxygen
     emacsToolsEnv
     enchant
     entr
     exiv2
     fd
     ffmpeg
     file
     findutils
     firefox
     fontconfig
     fzf
     gawk
     gdb
     gimp
     git
     gitAndTools.git-crypt
     gitAndTools.gitFastExport
     gitAndTools.pass-git-helper
     gitAndTools.tig
     gitstats
     global
     gnugrep
     gnumake
     gnupg
     gnuplot
     gnused
     gnutar
     graphviz-nox
     groff
     hammer
     haveged
     highlight
     htmlTidy
     htop
     httperf
     idutils
     imagemagick
     imgcat
     inkscape.out
     iotop
     iperf
     isync
     jq
     kdeApplications.gwenview
     kdeApplications.kcachegrind
     ledger
     less
     libreoffice
     librsvg
     ltrace
     m4
     mercurial
     mitmproxy
     mkpasswd
     msmtp
     mtr
     mu
     ncdu
     nfs-utils
     nix-bash-completions
     nix-diff
     nix-zsh-completions
     nmap
     nodePackages.csslint
     nodePackages.eslint
     nodePackages.js-beautify
     nodejs
     octave
     openjdk8
     openssh
     openssl
     openvpn
     p7zip
     pandoc
     paperkey
     parallel
     pass
     patch
     patchutils
     plantuml
     poppler_utils
     pstree
     pv
     python27
     python27Packages.certifi
     python27Packages.pygments
     python27Packages.setuptools
     python3
     python37Packages.gprof2dot
     python37Packages.ipdb
     python37Packages.ipython
     python37Packages.setuptools
     pythonDocs.html.python27
     pythonDocs.pdf_letter.python27
     qemu
     qrencode
     remind
     renameutils
     ripgrep
     rsync
     rtags
     screen
     smartmontools
     sourceHighlight
     stow
     strace
     subversion
     svg2tikz
     tcpdump
     time
     tmux
     tree
     unzip
     urlwatch
     valgrind
     vim
     vlc
     w3m
     watch
     watchman
     wavemon
     wget
     whois
     wireshark-qt
     wordnet
     wyrd
     xsv
     xz
     yubikey-personalization
     zip
     zsh
     zsh-syntax-highlighting
  ];
}