diff --git a/home/.chezmoi.toml.tmpl b/home/.chezmoi.toml.tmpl index 7a3c092..cc78d6d 100644 --- a/home/.chezmoi.toml.tmpl +++ b/home/.chezmoi.toml.tmpl @@ -1,11 +1,10 @@ chezmoi:template:missing-key=zero [data] email = {{ promptString "Git main email address " "" | quote }} -{{- with promptInt "How many mbsync accounts would you generate " -}}{{- $count := . | int }} +{{- with promptInt "How many mbsync accounts would you generate " 0 -}}{{- $count := . | int }} {{- if gt $count 0 -}} {{- range $i, $e := until $count }} [[data.mbsync]] -active = true name = {{ promptString "MbSync account name " | quote }} mail = {{ promptString "MbSync account mail " | quote }} user = {{ promptString "MbSync account user " | quote }} @@ -15,6 +14,6 @@ host = {{ promptString "MbSync account host " | quote }} {{ else }} [[data.mbsync]] -active = false +active = {{ $count }} {{- end }}