Ansible playbook to install htop, tmux and other common system tools

This Ansible playook installs common system tools such as htop, bmon. I recommend that you customize the package list to your needs.

---
- name: Install system tools
  hosts: all
  become: true
  tasks:
    - name: Update apt cache
      apt:
        update_cache: yes

    - name: Install essential system tools
      apt:
        name:
          - htop
          - bmon
          - iotop
          - openssh-server
          - tmux
          - screen
          - curl
          - wget
          - python3
          - python3-pip
        state: present