Split packages to separate tasks

Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
Matej Focko 2020-10-13 09:00:47 +02:00
parent 5a4eda0cdb
commit fcc7373630
No known key found for this signature in database
GPG key ID: 8535F3BCF69B3D69
2 changed files with 11 additions and 8 deletions

View file

@ -11,11 +11,5 @@
- flameshot
state: present
- name: Install all packages for shell
dnf:
name:
- zsh
- tmux
- neovim
- emacs
state: present
- include: shell.yml
- include: haskell.yml

View file

@ -0,0 +1,9 @@
---
- name: Install all packages for shell
dnf:
name:
- zsh
- tmux
- neovim
- emacs
state: present