This repository has been archived by the owner on Aug 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhosts.sample
104 lines (77 loc) · 2.43 KB
/
hosts.sample
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
# Copyright © 2019 4km3
# https://github.com/orgs/4km3/people
# This file is part of archify.
# archify is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# archify is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with archify. If not, see <https://www.gnu.org/licenses/>.
# SPDX-License-Identifier: GPL-3.0-or-later
#
# If you are managing your workstation locally, you can speed this up with
# `ansible_connection=local`:
#
thishost ansible_connection=local
#
# ‘archiso’ is the default hostname for the archlinux official installer image.
# You can use it to try archify on a VM.
archiso
#
# In case you don’t want FDE (Full Disk Encryption), set `want_fde` to `False`,
# both here and on the `bootstrap-nuc` entry, towards the end of this file:
#
nuc want_fde=False
#
# If you want to swap the roles of the Ctrl and Caps keys in the console, you
# can do it easily:
#
[StandardKeyboard]
desktop
laptop
xps13
[StandardKeyboard:vars]
vconsole_keymap_toggle=swap.ctrl-caps
#
# For devices with High DPI displays attached, you can choose a bigger console
# font:
#
[HiDPI]
desktopWith4KDisplay
dellXPS13
[HiDPI:vars]
vconsole_font=ter-128n
#
# The bootstrap-* hosts are a wrapper around the actual hosts.
# They are needed for the initial setup only (bootstrapping).
#
[bootstrap]
bootstrap-archiso ansible_host=archiso
bootstrap-desktop ansible_host=desktop
bootstrap-laptop ansible_host=laptop
bootstrap-nuc ansible_host=nuc want_fde=False
bootstrap-dellXPS13 ansible_host=dellXPS13
[bootstrap:vars]
ansible_user=root
ansible_ssh_pass=SetecAstronomy
#
# Default values, tweak them to your heart’s content.
#
# The emacs role (Spacemacs, actually) is quite network and I/O intensive, so
# we disable it here to reduce the setup time; set it to ‘True’ if you actually
# want it.
#
[all:vars]
want_ansible=True
want_docker=True
want_emacs=False
want_fde=True
want_golang=True
want_libvirt=True
want_mpd=True
want_opensc=True
want_todotxt=True