-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeck.yaml
118 lines (105 loc) · 2.25 KB
/
deck.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
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
---
- name: ProDeck
hosts: localhost
connection: local
vars:
nvidia:
install: true
version: 525
# Attention: if you do not perfectly know what you are doing,
# the steam-client poses massive security risks!
# If remote access is enabled in steam, it allows
# complete remote access and not just accessing
# games. You have been warned!
#
# Proper default for a work-environment would
# be false!
#
enable_steam: true
roles:
- deck
- regolith
- browser
- vscode
- thunderbird
- office
- media
- emacs
- role: ssh
tags: ssh
- role: fail2ban
tags: fail2ban
- neovim
- communication
- virtualbox
- hashicorp
- role: vmware-workstation
tags: vmw
- role: alacritty
tags: term
- role: nvidia
tags: nvidia
- role: ssg
tags: ssg
- role: system-stats
tags: stats
- role: remote
tags: rem
- borg
- role: steam
tags: steam
- user
- role: retro
tags: retro
pre_tasks:
# Any file with a .custom ending will be included
# from the current directory. Files with such
# suffix will be ignored by git.
#
# Later I will change this to use a specific directory.
#
- name: custom settings
ansible.builtin.include_vars:
dir: .
ignore_unknown_extensions: true
hash_behaviour: merge
extensions:
- 'custom'
tags:
- deck
# Pretty much to be expected, is it not?
#
- name: update apt cache and upgrade apt packages
apt:
update_cache: true
upgrade: full
state: latest
become: true
tags:
- apt
tasks:
- name: add some python
apt:
name:
- python3-venv
state: latest
become: true
tags:
- python
- name: stop apt nagging about esm apps
apt:
name:
- ubuntu-advantage-tools
state: absent
become: true
tags:
- nopro
# In some future this is going to be chucked into a role.
#
- name: Install a selection of snap-apps
snap:
name:
- openscad
become: true
tags:
- snaps