dotfiles/playbooks/roles/shell/tasks/main.yml

18 lines
285 B
YAML
Raw Normal View History

---
- 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