feat: adding prompt for hosttype, rather than relying on hostname

This commit is contained in:
Matthew Ryan Dillon 2024-10-02 18:07:40 -04:00
parent d667822e3e
commit 642e0958e0
5 changed files with 11 additions and 7 deletions

View file

@ -3,9 +3,13 @@
{{- $hostname := output "scutil" "--get" "ComputerName" | trim -}} {{- $hostname := output "scutil" "--get" "ComputerName" | trim -}}
{{- end -}} {{- end -}}
{{- $choices := list "wsl" "devterm" "personal" "work" -}}
{{- $hosttype := promptChoiceOnce . "hosttype" "What type of host are you on" $choices -}}
encryption = "age" encryption = "age"
[age] [age]
identity = "~/.key.txt" identity = "~/.key.txt"
recipient = "age1yd87u4ae86erpem2tynyl959ppc8a3jt4ztssykytzaklut6uvus5prt2t" recipient = "age1yd87u4ae86erpem2tynyl959ppc8a3jt4ztssykytzaklut6uvus5prt2t"
[data] [data]
hostname = {{ $hostname | quote }} hostname = {{ $hostname | quote }}
hosttype = {{- $hosttype | quote -}}

View file

@ -1,4 +1,4 @@
{{- if eq .chezmoi.hostname "devterm" }} {{- if eq .hosttype "devterm" }}
["ttyscheme"] ["ttyscheme"]
type = "git-repo" type = "git-repo"
url = "https://github.com/kolunmi/ttyscheme.git" url = "https://github.com/kolunmi/ttyscheme.git"

View file

@ -1,3 +1,3 @@
{{- if ne .chezmoi.os "darwin" }} {{- if ne .hosttype "work" }}
.zshemulateenergy .zshemulateenergy
{{- end }} {{- end }}

View file

@ -1,3 +1,3 @@
{{ if eq .chezmoi.hostname "rattusrattus" -}} {{ if eq .chezmoi.os "darwin" -}}
Include /Users/matthew/.orbstack/ssh/config Include ~/.orbstack/ssh/config
{{ end }} {{ end }}

View file

@ -2,7 +2,7 @@
set -e set -e
{{ if eq .chezmoi.hostname "devterm" -}} {{ if eq .hosttype "devterm" -}}
sudo apt install \ sudo apt install \
brightnessctl \ brightnessctl \
git \ git \
@ -16,7 +16,7 @@ sudo apt install \
zsh \ zsh \
-y -y
{{ else if eq .chezmoi.hostname "rattusrattus" -}} {{ else if eq .chezmoi.os "darwin" -}}
sudo port install \ sudo port install \
cmus \ cmus \
curl \ curl \
@ -36,7 +36,7 @@ sudo port install \
zk \ zk \
zsh zsh
{{ else if eq .chezmoi.hostname "yersiniapestis" -}} {{ else if eq .hosttype "wsl" -}}
sudo apt update sudo apt update
sudo apt install \ sudo apt install \
build-essential \ build-essential \