CHANGE: drops some packages from base_system role

This commit is contained in:
2026-08-17 12:33:37 +04:00
parent 6a7eb46d71
commit 7de3a91830
@@ -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