-
Notifications
You must be signed in to change notification settings - Fork 0
/
local.yml
169 lines (147 loc) · 3.35 KB
/
local.yml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
---
- hosts: localhost
connection: local
become: true
# Php is required for composer
pre_tasks:
- name: Switch Pop!_OS to Ubuntu
set_fact: ansible_distribution="Ubuntu"
when: ansible_distribution == "Pop!_OS"
- name: Install php
package:
state: present
name:
- php
- php-curl
- php-gd
- php-mbstring
- php-mysql
- php-xml
- php-zip
tags:
- php
- name: Remove apache because php installs it for some reason
package:
state: absent
name: apache2
tags:
- php
roles:
- brave
- node
- rust
- fonts
- role: geerlingguy.docker
become: true
tags:
- docker
- role: geerlingguy.composer
become: true
tags:
- php
- role: gantsign.visual-studio-code
tags:
- vscode
tasks:
- name: install packages
package:
state: present
name:
- bat
- flatpak
- htop
- peek
- ranger
- ripgrep
- steam
- tmux
- vim
- virt-manager
- vlc
- zsh
- name: Add the flathub flatpak repository remote to the user installation
flatpak_remote:
name: flathub
state: present
flatpakrepo_url: https://dl.flathub.org/repo/flathub.flatpakrepo
method: system
- name: Install Bottles
flatpak:
name: com.usebottles.bottles
state: present
method: system
- name: Install Cura
flatpak:
name: com.ultimaker.cura
state: present
method: system
- name: Install GreenWithEnvy
flatpak:
name: com.leinardi.gwe
state: present
method: system
- name: Install Heroic
flatpak:
name: com.heroicgameslauncher.hgl
state: present
method: system
- name: Install Neovim
flatpak:
name: io.neovim.nvim
state: present
method: system
- name: Install OBS Studio
flatpak:
name: com.obsproject.Studio
state: present
method: system
- name: Install OpenRGB
flatpak:
name: org.openrgb.OpenRGB
state: present
method: system
- name: Install Signal
flatpak:
name: org.signal.Signal
state: present
method: system
- name: Install Slack
flatpak:
name: com.slack.Slack
state: present
method: system
- name: Install Spotify
flatpak:
name: com.spotify.Client
state: present
method: system
- name: Install Zoom
flatpak:
name: us.zoom.Zoom
state: present
method: system
- name: Install Discord
package:
name: discord
- name: Install Blender
package:
name: blender
- name: Install Lando
apt:
deb: 'https://files.devwithlando.io/lando-stable.deb'
state: present
- name: Install appimagelauncher
import_tasks: tasks/appimagelauncher.yml
become: true
tags:
- appimagelauncher
- name: Install AWS Cli
include: tasks/aws.yml
become: true
tags:
- awscli
- name: Install Joplin
include: tasks/joplin.yml
become: no
tags:
- joplin