blob: 03d112af7bffbd8cc3d03a649470caa8d3c37dc1 (
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, ... }:
{
environment.systemPackages = with pkgs; [
ansible
bpftools
dict
encfs
enscript
expect
fio
fortune
ghostscript
imagemagick
inxi
iotop
ipcalc
iperf
jq
mutt
poppler_utils
powertop
qrencode
radeontop
speedtest-cli
sshfs
(weechat.override {
configure = { availablePlugins, ...}: {
plugins = with availablePlugins; [
(perl.withPackages(p: [ p.PodParser ]))
] ++ [ python ];
};
})
];
}
|