21 lines
No EOL
314 B
YAML
21 lines
No EOL
314 B
YAML
---
|
|
- name: Upgrade all packages
|
|
dnf:
|
|
name: '*'
|
|
state: latest
|
|
|
|
- name: Install playerctl and flameshot
|
|
dnf:
|
|
name:
|
|
- playerctl
|
|
- flameshot
|
|
state: present
|
|
|
|
- name: Install all packages for shell
|
|
dnf:
|
|
name:
|
|
- zsh
|
|
- tmux
|
|
- neovim
|
|
- emacs
|
|
state: present |