dotfiles/playbooks/roles/shell/tasks/main.yml
Matej Focko de292d018f
Add first version of playbooks and configs
Signed-off-by: Matej Focko <matej.focko@outlook.com>
2020-10-11 15:09:15 +02:00

18 lines
No EOL
285 B
YAML

---
- name: Install all packages for shell
dnf:
name:
- zsh
- tmux
- neovim
- emacs
state: present
- name: Set default shell and generate SSH key
user:
name: mfocko
shell: /bin/zsh
- include: nvim.yml
- include: zsh.yml
- include: tmux.yml