Added lots ot chezmoi config
This commit is contained in:
parent
2bb2b13107
commit
d87bdd6c92
1 changed files with 29 additions and 6 deletions
|
@ -1,9 +1,32 @@
|
|||
{{- $personal := false -}}{{/* true if this is a personal machine */}}
|
||||
|
||||
{{- $personal = promptBool "personal" -}}
|
||||
|
||||
format = yaml
|
||||
{{- $personal := promptBool "Personal?" -}}{{/* true if this is a personal machine */}}
|
||||
{{- if eq $personal true -}}
|
||||
{{- $work := false -}}
|
||||
{{- $email = "something@work.email" -}}
|
||||
{{- else -}}
|
||||
{{- $email = promptString "Email?" -}}
|
||||
{{- $work := promptBool "Work?" -}}
|
||||
{{- end -}}
|
||||
|
||||
sourceDir: {{ .chezmoi.SourceDir | quote }}
|
||||
data:
|
||||
name: "Eric Renfro"
|
||||
personal: {{ $personal | quote }}
|
||||
email: {{ $email | quote }}
|
||||
is:
|
||||
personal: {{ $personal -}}
|
||||
work: {{ $work -}}
|
||||
battlestation: false
|
||||
headless: true
|
||||
theme: "erenfro"
|
||||
programs:
|
||||
terminal: alacritty
|
||||
editor: micro
|
||||
visual: less
|
||||
browser: firefox
|
||||
font:
|
||||
term:
|
||||
name: "Hack Nerd Font"
|
||||
size: 12.0
|
||||
encryption: "age"
|
||||
age:
|
||||
recipient: "age1fc7myuewzdr7rvqr9fl3x3jwky3j4gp92hxguf3dlgnesm9s9e8q45xmp2"
|
||||
identity: "~/.config/sops/keys.txt"
|
||||
|
|
Loading…
Reference in a new issue