From 4da0d1d76572354f7f6c4f9b2b6aad478cd5f3f6 Mon Sep 17 00:00:00 2001 From: "Stefan Gaiselmann (centos8)" Date: Fri, 23 Oct 2020 13:37:20 +0200 Subject: [PATCH] Added configuration to prompt for config values on new machine. --- .chezmoi.toml.tmpl | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .chezmoi.toml.tmpl diff --git a/.chezmoi.toml.tmpl b/.chezmoi.toml.tmpl new file mode 100644 index 0000000..69af6b3 --- /dev/null +++ b/.chezmoi.toml.tmpl @@ -0,0 +1,5 @@ +{{- $name := promptString "name" -}} +{{- $email := promptString "email" -}} +[data] + name = "{{ $name }}" + email = "{{ $email }}"