dotfiles/playbooks/roles/shell/tasks/main.yml
Matej Focko 4e28898c24
Install shell tools and update user as root
Signed-off-by: Matej Focko <me@mfocko.xyz>
2020-10-11 20:32:35 +02:00

23 lines
379 B
YAML

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