summaryrefslogtreecommitdiffstats
path: root/modules/base/manifests/tools.pp
blob: a05e82dba10bcb032ec16eeeb3256142e6a8b49a (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",
      "eza",
      "fzf",
      "git-delta",
      "helix",
      "htop",
      "iftop",
      "iotop",
      "lsof",
      "neomutt",
      "ncdu",
      "ripgrep",
      "starship",
      "strace",
      "tmux",
    ]:
    ensure => 'installed';
  }
}