mirror of
https://github.com/eoli3n/dotfiles
synced 2024-11-22 23:12:32 +01:00
37 lines
853 B
YAML
37 lines
853 B
YAML
---
|
|
- hosts: all
|
|
tags: [ 'server', 'laptop', 'desktop' ]
|
|
|
|
roles:
|
|
- { role: packages, tags: packages }
|
|
- { role: zsh, tags: zsh }
|
|
- { role: vim, tags: vim }
|
|
- { role: terminfo, tags: terminfo }
|
|
- { role: screen, tags: screen }
|
|
- { role: ssh-agent, tags: ssh-agent }
|
|
|
|
- hosts: all
|
|
tags: [ 'desktop', 'laptop' ]
|
|
|
|
roles:
|
|
- { role: cursor, tags: cursor }
|
|
- { role: i3-wm, tags: i3-wm }
|
|
- { role: compton, tags: compton }
|
|
- { role: polybar, tags: polybar }
|
|
- { role: rofi, tags: rofi }
|
|
- { role: neofetch, tags: neofetch }
|
|
- { role: termite, tags: termite }
|
|
- { role: weechat, tags: weechat }
|
|
|
|
tasks:
|
|
- include_role:
|
|
name: weechat
|
|
when: ansible_env.username == "vagrant"
|
|
tags: wallpaper
|
|
|
|
- hosts: all
|
|
tags: laptop
|
|
|
|
roles:
|
|
- { role: xbindkeys, tags: xbindkeys }
|