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.

21 lines
889 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]" -}}
encryption = "age"
[age]
identity = "{{ .chezmoi.homeDir }}/.config/chezmoi/key.txt"
recipient = "age166qk8xkvd5cx2mqfxenw0mvmg4ghv7jzg8ffr0f0dave5lwzm38qswha8c"
[data]
development = {{ $development }}
git_email = "{{ $git_email }}"
git_name = "{{ $git_name }}"
personal_dev = {{ $personal_dev }}
include_legacy = {{ $include_legacy }}
work = {{ $work }}