mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 09:27:44 -04:00
Update repo structure as part of nixification
This commit is contained in:
parent
49e67c64fb
commit
cc0efcfdde
56 changed files with 181 additions and 154 deletions
24
legacy/.bundle/ansible/server-zsh.yaml
Normal file
24
legacy/.bundle/ansible/server-zsh.yaml
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
---
|
||||
- name: Install and configure zsh
|
||||
hosts: servers
|
||||
vars:
|
||||
ansible_python_interpreter: '/usr/bin/python3'
|
||||
tasks:
|
||||
|
||||
- name: Install zsh using default package manager
|
||||
become: true
|
||||
ansible.builtin.package:
|
||||
state: present
|
||||
name:
|
||||
- git
|
||||
- zsh
|
||||
|
||||
- name: Setup Oh My ZSH
|
||||
include_role:
|
||||
name: gantsign.oh-my-zsh
|
||||
vars:
|
||||
oh_my_zsh_theme: steeef
|
||||
oh_my_zsh_plugins:
|
||||
- git
|
||||
users:
|
||||
- username: "{{ ansible_user }}"
|
||||
Loading…
Add table
Add a link
Reference in a new issue