1
0
Fork 0
dotfiles/packages.yml
2023-07-21 20:50:29 +02:00

33 lines
686 B
YAML

- name: Install packages
hosts: localhost
tasks:
- name: Install system packages
become: yes
ansible.builtin.package:
name:
- git
- tmux
- python3-pip
- fish
state: present
- name: Install cargo packages
community.general.cargo:
name:
- git-delta
- dotter
- bottom
- git-cliff
- topgrade
- bat
- cargo-update
state: latest
- name: Install pipx packages
community.general.pipx:
name: "{{ item }}"
state: latest
loop:
- yt-dlp
- pdm
- poetry
- halig