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 -}}
{{- end -}}
{{- $choices := list "wsl" "devterm" "personal" "work" -}}
{{- $hosttype := promptChoiceOnce . "hosttype" "What type of host are you on" $choices -}}
encryption = "age"
[age]
identity = "~/.key.txt"
recipient = "age1yd87u4ae86erpem2tynyl959ppc8a3jt4ztssykytzaklut6uvus5prt2t"
[data]
hostname = {{ $hostname | quote }}
hosttype = {{- $hosttype | quote -}}

View file

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

View file

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

View file

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

View file

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