You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
939 B
Cheetah

{{- $development := promptBoolOnce . "development" "is this a development environment [false]" -}}
{{- $personal_dev := promptBoolOnce . "personal_dev" "is this a personal development environment [false]" -}}
{{- $git_email := promptStringOnce . "git_email" "email to use in git config" -}}
{{- $git_name := promptStringOnce . "git_name" "name to use in git config" -}}
{{- $include_legacy := promptBoolOnce . "include_legacy" "include old scripts [false]" -}}
{{- $work := promptBoolOnce . "work" "include work tools [false]" -}}
{{- $age_key := promptStringOnce . "age_key" "age public key of recipient" -}}
encryption = "age"
[age]
identity = "{{ .chezmoi.homeDir }}/.config/chezmoi/{{ $age_key }}.key"
recipient = "{{ $age_key }}"
[data]
age_key = "{{ $age_key }}"
development = {{ $development }}
git_email = "{{ $git_email }}"
git_name = "{{ $git_name }}"
personal_dev = {{ $personal_dev }}
include_legacy = {{ $include_legacy }}