blob: 88974f6a2e9e4ea0f9bffea0dc5a5196ce50a339 (
plain) (
blame)
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
|
---
username: "test_user"
user_public_keys:
- "ssh-ed25519 AAAA...fMo"
- "ssh-rsa AAAA...4I3"
network_wifi_ssid: "TEST_WIFI_SSID"
network_wifi_pass: "TEST_WIFI_PASS"
ssh_port: 39901
gpg_public_keys:
- |
# generate using
# gpg --export --armor keyID
-----BEGIN PGP PUBLIC KEY BLOCK-----
mCMEZBDEPxYJKwYBB...
...
=pdo1
-----END PGP PUBLIC KEY BLOCK-----
timezone: "UTC"
locales:
- "en_US.UTF-8 UTF-8"
- "de_DE.UTF-8 UTF-8"
locales_lang: "en_US.UTF-8"
locales_language: "en_US.UTF-8"
locales_lc_time: "de_DE.UTF-8"
locales_time_style: "iso"
locales_lc_collate: "C.UTF-8"
password_policy_enabled: true
password_policy_minlen: 8
password_policy_dcredit: 1
password_policy_ucredit: 1
password_policy_ocredit: 1
password_policy_lcredit: 1
password_policy_minclass: 4
password_policy_maxrepeat: 3
password_policy_maxclassrepeat: 0
password_policy_gecoscheck: 0
dotfiles_repo_url: "https://git.sr.ht/~a14m/.rc"
dotfiles_setup_script: |
cd ~/.rc
stow --no-folding .
chmod 0700 ~/.gnupg
git remote set-url origin [email protected]:~a14m/.rc
wireguard_autostart_connection: "wg-vpn0"
wireguard_connections:
wg-vpn0: |
[Interface]
PrivateKey = your_private_key_here
Address = 10.2.0.2/32
DNS = 10.2.0.1
[Peer]
PublicKey = server_public_key
AllowedIPs = 0.0.0.0/0
Endpoint = vpn.com:51820
|