blob: fccb28346242817ffc76007c09bc5b73c8947655 [file] [log] [blame]
Copybara botca5ce642024-11-08 17:38:08 +01001{{- $envChoices := list "home" "work" }}
2{{- $env := promptChoiceOnce . "env" "Environment" $envChoices -}}
3
4{{- $gitName := promptStringOnce . "git.name" "Git name" -}}
5{{- $gitEmail := promptStringOnce . "git.email" "Git email address" -}}
6{{- $gitSigningKey := promptStringOnce . "git.signingKey" "Git signing key" -}}
7
8{{- $ansibleVaultPasswordFile := promptStringOnce . "ansibleVault.passwordFile" "Ansible Vault password file path (leave empty if not available)" -}}
9
Adrià Vilanova Martínez3c04e1b2024-11-23 15:51:44 +010010{{- $swayLockBg := promptStringOnce . "swayLock.bg" "Background image for swaylock" -}}
11
12{{- $switchKeyboardMac := promptStringOnce . "switchKeyboard.mac" "MAC address of the keyboard (for switch-keyboard, only used in Linux)" -}}
Copybara botca5ce642024-11-08 17:38:08 +010013
14[data]
15 env = {{ $env | quote }}
16
17[data.git]
18 name = {{ $gitName | quote }}
19 email = {{ $gitEmail | quote }}
20 signingKey = {{ $gitSigningKey | quote }}
21
22[data.ansibleVault]
23 passwordFile = {{ $ansibleVaultPasswordFile | quote }}
24
Adrià Vilanova Martínez3c04e1b2024-11-23 15:51:44 +010025[data.swayLock]
26 bg = {{ $swayLockBg | quote }}
27
Copybara botca5ce642024-11-08 17:38:08 +010028[data.switchKeyboard]
29 mac = {{ $switchKeyboardMac | quote }}