-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstl_cmn_pkgs_home_plybk.yml
80 lines (69 loc) · 1.67 KB
/
instl_cmn_pkgs_home_plybk.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
---
- hosts: all
become: true
tasks:
- name: install curl and wget (gets stuffs)
package:
name:
- "{{ curl_dist_pkg }}"
- "{{ wget_dist_pkg }}"
state: latest
update_cache: yes
- name: feh (shows pics)
package:
name:
- "{{ feh_dist_pkg}}"
state: latest
update_cache: yes
- name: flatpak snap docker (apps not dist specific)
package:
name:
- "{{ flatpak_dist_pkg }}"
- "{{ snapd_dist_pkg }}"
- "{{ docker_dist_pkg }}"
state: latest
update_cache: yes
- name: git (build stuff)
package:
name:
- "{{ git_dist_pkg }}"
state: latest
update_cache: yes
- name: htop iotop inxi (prettier monitoring)
package:
name:
- "{{ htop_dist_pkg }}"
- "{{ iotop_dist_pkg }}"
- "{{ inxi_dist_pkg }}"
state: latest
update_cache: yes
- name: nfscommon (access nfs shares)
package:
name:
- "{{ nfscommon_dist_pkg }}"
state: latest
update_cache: yes
- name: openssh-server (remote access)
package:
name:
- "{{ opensshserver_dist_pkg }}"
state: latest
update_cache: yes
- name: tmux (teminal multiplexer so I can detach, mostly)
package:
name:
- "{{ tmux_dist_pkg }}"
state: latest
update_cache: yes
- name: vim (to edit text)
package:
name:
- "{{ vim_dist_pkg }}"
state: latest
update_cache: yes
- name: zsh (shell with some niceties)
package:
name:
- "{{ zsh_dist_pkg }}"
state: latest
update_cache: yes