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