Update 19 files

- /home/.chezmoiscripts/universal/run_onchange_after_11-symlink-ansible-roles.tmpl
- /home/.chezmoiscripts/universal/run_before_1-decrypt-age-key.tmpl
- /home/.chezmoiscripts/universal/run_onchange_after_12-install-packages.tmpl
- /home/.chezmoiscripts/universal/run_onchange_after_14_install-aqua-packages.sh.tmpl
- /home/.chezmoiscripts/universal/run_onchange_after_18-install-sdkman.tmpl
- /home/.chezmoiscripts/universal/run_onchange_after_50-crontab.tmpl
- /home/.chezmoiscripts/universal/run_onchange_after_80-bash-completions.tmpl
- /home/.chezmoiscripts/universal/run_onchange_after_99_bootstrap-zsh-plugins.tmpl
- /home/.chezmoiscripts/universal/run_onchange_before_91-configure-gpg.tmpl
- /home/.chezmoiscripts/ubuntu/run_onchange_before_10_install-ubuntu-dependencies.tmpl
- /home/.chezmoiscripts/opensuse/run_onchange_before_11-install-opensuse-software.tmpl
- /home/.chezmoiscripts/freebsd/run_onchange_before_11-install-freebsd-packages.tmpl
- /home/.chezmoiscripts/fedora/run_onchange_before_10-install-fedora-dependencies.tmpl
- /home/.chezmoiscripts/debian/run_onchange_before_10-install-debian-dependencies.tmpl
- /home/.chezmoiscripts/darwin/run_onchange_before_10_install-darwin-dependencies.tmpl
- /home/.chezmoiscripts/centos/run_onchange_before_10-install-centos-dependencies.tmpl
- /home/.chezmoiscripts/archlinux/run_onchange_before_10_install-archlinux-dependencies.tmpl
- /home/.chezmoiscripts/_universal/run_onchange_before_5-install-homebrew.tmpl
- /home/.chezmoiscripts/_universal/run_onchange_before_8-install-zx.tmpl
This commit is contained in:
Brian Zalewski 2022-12-25 08:30:40 +00:00
parent 0d96259467
commit c1a72a7d37
19 changed files with 30 additions and 30 deletions

View file

@ -1,8 +1,8 @@
#!/usr/bin/env bash
{{- if (ne .host.distro.family "windows") }}
{{- includeTemplate "universal/profile" }}
{{- includeTemplate "universal/logg" }}
{{ includeTemplate "universal/profile" }}
{{ includeTemplate "universal/logg" }}
### Install Xcode CLI tools on macOS
if [ -d /Applications ] && [ -d /Library ]; then

View file

@ -1,8 +1,8 @@
#!/usr/bin/env bash
{{- if (ne .host.distro.family "windows") }}
{{- includeTemplate "universal/profile" }}
{{- includeTemplate "universal/logg" }}
{{ includeTemplate "universal/profile" }}
{{ includeTemplate "universal/logg" }}
### Ensure node is installed
if ! command -v node > /dev/null; then

View file

@ -2,7 +2,7 @@
# universal/essential-packages hash: {{ include (joinPath ".chezmoitemplates" "universal" "essential-packages") | sha256sum }}
{{- includeTemplate "universal/logg" }}
{{ includeTemplate "universal/logg" }}
{{- $packages := splitList " " (includeTemplate "universal/essential-packages" .) }}
{{- $gpgDependencies := list

View file

@ -2,7 +2,7 @@
# universal/essential-packages hash: {{ include (joinPath ".chezmoitemplates" "universal" "essential-packages") | sha256sum }}
{{- includeTemplate "universal/logg" }}
{{ includeTemplate "universal/logg" }}
{{- $packages := splitList " " (includeTemplate "universal/essential-packages" .) }}
# TODO - Add Python dependencies like in ubuntu/archlinux

View file

@ -2,8 +2,8 @@
# darwin/Brewfile hash: {{ include (joinPath ".chezmoitemplates" "darwin" "Brewfile") | sha256sum }}
{{- includeTemplate "universal/profile" }}
{{- includeTemplate "universal/logg" }}
{{ includeTemplate "universal/profile" }}
{{ includeTemplate "universal/logg" }}
if command -v brew > /dev/null; then
logg 'Installing base dependencies for macOS using `brew bundle`'

View file

@ -2,7 +2,7 @@
# universal/essential-packages hash: {{ include (joinPath ".chezmoitemplates" "universal" "essential-packages") | sha256sum }}
{{- includeTemplate "universal/logg" }}
{{ includeTemplate "universal/logg" }}
{{- $packages := splitList " " (includeTemplate "universal/essential-packages" .) -}}
{{- $gpgDependencies := list

View file

@ -2,7 +2,7 @@
# universal/essential-packages hash: {{ include (joinPath ".chezmoitemplates" "universal" "essential-packages") | sha256sum }}
{{- includeTemplate "universal/logg" }}
{{ includeTemplate "universal/logg" }}
{{- $packages := splitList " " (includeTemplate "universal/essential-packages" .) }}
# TODO - Add Python dependencies like in ubuntu/archlinux

View file

@ -2,7 +2,7 @@
# universal/essential-packages hash: {{ include (joinPath ".chezmoitemplates" "universal" "essential-packages") | sha256sum }}
{{- includeTemplate "universal/logg" }}
{{ includeTemplate "universal/logg" }}
{{- $packages := splitList " " (includeTemplate "universal/essential-packages" .) }}
# TODO - Add Python dependencies like in ubuntu/archlinux

View file

@ -2,7 +2,7 @@
# universal/essential-packages hash: {{ include (joinPath ".chezmoitemplates" "universal" "essential-packages") | sha256sum }}
{{- includeTemplate "universal/logg" }}
{{ includeTemplate "universal/logg" }}
{{- $packages := splitList " " (includeTemplate "universal/essential-packages" .) }}
# TODO - Add Python dependencies like in ubuntu/archlinux

View file

@ -2,7 +2,7 @@
# universal/essential-packages hash: {{ include (joinPath ".chezmoitemplates" "universal" "essential-packages") | sha256sum }}
{{- includeTemplate "universal/logg" }}
{{ includeTemplate "universal/logg" }}
{{- $packages := splitList " " (includeTemplate "universal/essential-packages" .) -}}
{{- $pyenvDependencies := list

View file

@ -1,6 +1,6 @@
#!/usr/bin/env bash
{{- includeTemplate "universal/logg" }}
{{ includeTemplate "universal/logg" }}
XDG_CONFIG_HOME="$HOME/.config"

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash
{{- includeTemplate "universal/profile" }}
{{- includeTemplate "universal/logg" }}
{{ includeTemplate "universal/profile" }}
{{ includeTemplate "universal/logg" }}
{{ $roleDirs := (output "find" (joinPath .chezmoi.homeDir ".local" "src" "gas-station" "roles") "-mindepth" "2" "-maxdepth" "2" "-type" "d") -}}
{{- range $roleDir := splitList "\n" $roleDirs -}}

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash
{{- includeTemplate "universal/profile" }}
{{- includeTemplate "universal/logg" }}
{{ includeTemplate "universal/profile" }}
{{ includeTemplate "universal/logg" }}
{{- $softwareGroup := nospace (cat "_" .host.softwareGroup) }}
# software: {{ index .softwareGroups $softwareGroup | toString | replace "[" "" | replace "]" "" }}

View file

@ -3,8 +3,8 @@
set -eufo pipefail
{{- includeTemplate "universal/profile" }}
{{- includeTemplate "universal/logg" }}
{{ includeTemplate "universal/profile" }}
{{ includeTemplate "universal/logg" }}
{{- $files := list -}}
{{- range $path := glob (list .chezmoi.sourceDir "private_dot_config/aqua/**/*.yaml.tmpl" | join "/") }}

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash
{{- includeTemplate "universal/profile" }}
{{- includeTemplate "universal/logg" }}
{{ includeTemplate "universal/profile" }}
{{ includeTemplate "universal/logg" }}
### Ensure SDKMan is installed (https://sdkman.io/)
if [ ! -d "$SDKMAN_DIR" ]; then

View file

@ -3,8 +3,8 @@
# crontab config hash: {{ include (joinPath .chezmoi.homeDir ".config" "crontab" "config")| sha256sum }}
{{- includeTemplate "universal/profile" }}
{{- includeTemplate "universal/logg" }}
{{ includeTemplate "universal/profile" }}
{{ includeTemplate "universal/logg" }}
logg 'Installing crontab jobs'
crontab < "$XDG_CONFIG_HOME/crontab/config"

View file

@ -3,8 +3,8 @@
# .chezmoidata.yml hash: {{ include (joinPath .chezmoi.sourceDir ".chezmoidata.yaml")| sha256sum }}
# software.yml hash: {{ include (joinPath .chezmoi.homeDir ".local" "share" "chezmoi" "software.yml")| sha256sum }}
{{- includeTemplate "universal/profile" }}
{{- includeTemplate "universal/logg" }}
{{ includeTemplate "universal/profile" }}
{{ includeTemplate "universal/logg" }}
logg 'Updating the `~/.local/share/bash-completion/completions` folder based on the installed applications'

View file

@ -3,8 +3,8 @@
# .zshrc hash: {{ include (joinPath .chezmoi.homeDir ".zshrc")| sha256sum }}
{{- includeTemplate "universal/profile" }}
{{- includeTemplate "universal/logg" }}
{{ includeTemplate "universal/profile" }}
{{ includeTemplate "universal/logg" }}
### Initialize ZSH so plugin bootstrap process is done ahead of time
if command -v zsh > /dev/null; then

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash
{{- includeTemplate "universal/profile" }}
{{- includeTemplate "universal/logg" }}
{{ includeTemplate "universal/profile" }}
{{ includeTemplate "universal/logg" }}
KEYID="{{ .user.gpg.id }}"