diff --git a/home/.chezmoi.toml.tmpl b/home/.chezmoi.toml.tmpl index 50e134d..05e17f6 100644 --- a/home/.chezmoi.toml.tmpl +++ b/home/.chezmoi.toml.tmpl @@ -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 -}} diff --git a/home/.chezmoiexternal.toml.tmpl b/home/.chezmoiexternal.toml.tmpl index e48bdb3..2e21176 100644 --- a/home/.chezmoiexternal.toml.tmpl +++ b/home/.chezmoiexternal.toml.tmpl @@ -1,4 +1,4 @@ -{{- if eq .chezmoi.hostname "devterm" }} +{{- if eq .hosttype "devterm" }} ["ttyscheme"] type = "git-repo" url = "https://github.com/kolunmi/ttyscheme.git" diff --git a/home/.chezmoiignore.tmpl b/home/.chezmoiignore.tmpl index a5c8fd5..6703485 100644 --- a/home/.chezmoiignore.tmpl +++ b/home/.chezmoiignore.tmpl @@ -1,3 +1,3 @@ -{{- if ne .chezmoi.os "darwin" }} +{{- if ne .hosttype "work" }} .zshemulateenergy {{- end }} diff --git a/home/private_dot_ssh/config.tmpl b/home/private_dot_ssh/config.tmpl index 2b4e681..6b55614 100644 --- a/home/private_dot_ssh/config.tmpl +++ b/home/private_dot_ssh/config.tmpl @@ -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 }} diff --git a/home/run_once_01install-packages.sh.tmpl b/home/run_once_01install-packages.sh.tmpl index 2a30865..145182c 100644 --- a/home/run_once_01install-packages.sh.tmpl +++ b/home/run_once_01install-packages.sh.tmpl @@ -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 \