summaryrefslogtreecommitdiffstats
path: root/modules/base/manifests/tools.pp
blob: ca9072162cf48f46b7bbf4c2eb5caa4ef4898143 (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
24
class base::tools {
  include yay

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