summaryrefslogtreecommitdiffstats
path: root/modules/base/manifests/tools.pp
blob: a13353667b9574451c26dc32c64921de7361cbf3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class base::tools {
  include yaourt

  package {
    [
      "bc",
      "exa",
      "fzf",
      "htop",
      "iftop",
      "iotop",
      "lsof",
      # remove after https://bugs.archlinux.org/task/61603 is fixed
      "libidn",
      "neomutt",
      "ncdu",
      "strace",
      "the_silver_searcher",
      "tmux",
    ]:
    ensure => 'installed';
  }
}