summaryrefslogtreecommitdiffstats
path: root/modules/base/manifests/tools.pp
blob: 790ffcdbf73dad77640ad2015f17e3d248e1aeb2 (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 yay

  package {
    [
      "bc",
      "exa",
      "fzf",
      "git-delta",
      "helix",
      "htop",
      "iftop",
      "iotop",
      "lsof",
      "neomutt",
      "ncdu",
      "ripgrep",
      "strace",
      "tmux",
    ]:
    ensure => 'installed';
  }
}