18 lines
285 B
YAML
18 lines
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
|