Refactor fedora packages

Signed-off-by: Matej Focko <matej.focko@outlook.com>
This commit is contained in:
Matej Focko 2020-10-14 20:10:55 +02:00
parent 646268d5e5
commit 66aa6fbdbf
No known key found for this signature in database
GPG key ID: 707F7C6CBA7A2271
2 changed files with 22 additions and 1 deletions

View file

@ -2,7 +2,7 @@
- name: Fedora bootstrap
hosts: all
roles:
- role: fedora_packages
- role: fedora/packages
become: yes
become_method: sudo
- flatpaks

View file

@ -0,0 +1,21 @@
---
- 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