2023-01-28 22:55:46 -08:00
|
|
|
{{- if eq .host.distro.family "linux" -}}
|
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2023-01-30 00:06:59 -08:00
|
|
|
# Keybase config hash: {{ include (joinPath .chezmoi.homeDir ".config" "keybase" "config.json") | sha256sum }}
|
2023-01-28 22:55:46 -08:00
|
|
|
|
|
|
|
{{ includeTemplate "universal/profile" }}
|
|
|
|
{{ includeTemplate "universal/logg" }}
|
|
|
|
|
|
|
|
if command -v keybase > /dev/null; then
|
|
|
|
logg info 'Ensuring /etc/keybase is a directory'
|
|
|
|
sudo mkdir -p /etc/keybase
|
|
|
|
|
|
|
|
KEYBASE_CONFIG="${XDG_CONFIG_HOME:-$HOME/.config}/keybase/config.json"
|
|
|
|
logg info "Copying $KEYBASE_CONFIG to /etc/keybase/config.json"
|
|
|
|
sudo cp -f "$KEYBASE_CONFIG" /etc/keybase/config.json
|
|
|
|
else
|
|
|
|
logg info 'The `keybase` executable is not available'
|
|
|
|
fi
|
2023-01-30 00:06:59 -08:00
|
|
|
|
|
|
|
{{ end -}}
|