-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.yaml
45 lines (43 loc) · 939 Bytes
/
main.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
- name: Setup dotfiles
hosts: localhost
pre_tasks:
- name: Sync and refresh
become: true
community.general.pacman:
update_cache: true
when: ansible_facts.os_family == "Archlinux" and can_become
- name: Update list of available packages
become: true
ansible.builtin.apt:
update_cache: true
when: ansible_facts.os_family == "Debian" and can_become
roles:
- role: bash
tags: bash
- role: wezterm
tags: wezterm
- role: git
tags: git
- role: i3
tags: i3
- role: lightdm
tags: lightdm
- role: bluetooth
tags: bluetooth
- role: rofi
tags: rofi
- role: emacs
tags: emacs
- role: mpv
tags: mpv
- role: qutebrowser
tags: qutebrowser
- role: gnupg
tags: gnupg
- role: ssh
tags: ssh
- role: python
tags: python
- role: docker
tags: docker