blob: 492d13f78416c9af12e88290279e24c92f9c0243 (
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
|
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
ansible
aspell
aspellDicts.en
aspellDicts.en-computers
aspellDicts.en-science
dict
encfs
enscript
expect
fio
fortune
ghostscript
imagemagick
inxi
iotop
ipcalc
iperf
mutt
poppler_utils
powertop
qrencode
radeontop
speedtest-cli
sshfs
(weechat.override {
configure = { availablePlugins, ...}: {
plugins = with availablePlugins; [
(perl.withPackages(p: [ p.PodParser ]))
] ++ [ python ];
scripts = with pkgs.weechatScripts; [
wee-slack
];
};
})
];
}
|