mirror of
https://github.com/Xevion/dotfiles.git
synced 2025-12-15 12:11:40 -06:00
10 lines
291 B
Bash
10 lines
291 B
Bash
{{ if eq .chezmoi.os "linux" -}}
|
|
#!/bin/sh
|
|
# libpq-dev libssh-dev libsqlite3-dev
|
|
echo "chezmoi: Installing packages"
|
|
sudo apt install micro iperf3 ripgrep unzip p7zip-full zsh fish nmap curl git reptyr sqlite
|
|
{{- else if eq .chezmoi.os "darwin" -}}
|
|
#!/bin/sh
|
|
brew install ripgrep
|
|
{{ end -}}
|