22 lines
No EOL
738 B
Cheetah
22 lines
No EOL
738 B
Cheetah
{{- $hostname := .chezmoi.hostname -}}
|
|
{{- if eq .chezmoi.os "darwin" -}}
|
|
{{- $hostname := output "scutil" "--get" "ComputerName" | trim -}}
|
|
{{- end -}}
|
|
|
|
{{- $choices := list "wsl" "devterm" "personal" "work" -}}
|
|
{{- $hosttype := promptChoiceOnce . "hosttype" "What type of host are you on" $choices -}}
|
|
|
|
{{ $name := promptString "name" -}}
|
|
{{ $email := promptString "email" -}}
|
|
{{ $github := promptString "github" -}}
|
|
|
|
encryption = "age"
|
|
[age]
|
|
identity = "~/.key.txt"
|
|
recipient = "age1yd87u4ae86erpem2tynyl959ppc8a3jt4ztssykytzaklut6uvus5prt2t"
|
|
[data]
|
|
hostname = {{ $hostname | quote }}
|
|
hosttype = {{ $hosttype | quote }}
|
|
name = {{ $name | quote }}
|
|
email = {{ $email | quote }}
|
|
github = {{ $github | quote }} |