diff --git a/roles/base_system/tasks/install_packages.yaml b/roles/base_system/tasks/install_packages.yaml index fc9f3d2..1a5bc5e 100644 --- a/roles/base_system/tasks/install_packages.yaml +++ b/roles/base_system/tasks/install_packages.yaml @@ -3,18 +3,13 @@ when: (ansible_facts['os_family'] == "Debian") ansible.builtin.apt: name: - - vim - - neovim - gcc - - tree-sitter-cli - - luarocks - ranger - zsh - rsync - git - curl - kitty - # - unattended-upgrades It requires some addition configuration, exclude it for now - ssh - openssh-server update-cache: true # Run apt update before installation @@ -40,6 +35,6 @@ - name: Update and install packages on Alpine when: (ansible_facts['distribution'] == "Alpine") community.general.apk: - name: neovim vim ranger zsh rsync git curl kitty openssh + name: ranger zsh rsync git curl kitty openssh update_cache: true remote_user: ansible