-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.chezmoi.toml.tmpl
22 lines (21 loc) · 1013 Bytes
/
.chezmoi.toml.tmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{- $email := promptStringOnce . "email" "What is your email address" -}}
{{- $gpgkey := promptStringOnce . "gpgkey" "GPG key" -}}
{{- $resticpassword := promptStringOnce . "resticpassword" "restic password" -}}
{{- $resticrepository := promptStringOnce . "resticrepository" "restic repository" -}}
{{- $backblazeid := promptStringOnce . "backblazeid" "Backblaze account ID" -}}
{{- $backblazekey := promptStringOnce . "backblazekey" "Backblaze Key" -}}
{{- $backuppath := promptStringOnce . "backuppath" "Backup path" -}}
{{- $healthchecks := promptStringOnce . "healthchecks" "Healthchecks device id" -}}
[data]
email = {{ $email | quote }}
gpgkey = {{ $gpgkey | quote }}
[data.restic]
path = {{ $backuppath | quote }}
password = {{ $resticpassword | quote }}
repository = {{ $resticrepository | quote }}
b2accountid = {{ $backblazeid | quote }}
b2accountkey = {{ $backblazekey | quote }}
healthchecks = {{ $healthchecks | quote }}
encryption = "gpg"
[gpg]
symmetric = true