[macos] Add macOS specific package

This commit is contained in:
2025-01-03 16:34:23 +00:00
parent d053c14437
commit 340c1d7dbd
2 changed files with 19 additions and 0 deletions

15
macos/.config/Brewfile Normal file
View File

@@ -0,0 +1,15 @@
brew "go"
# K8s related
brew "kubernetes-cli"
brew "kubeseal"
brew "fluxcd/tap/flux"
# Hugo
brew "hugo"
brew "sass/sass/sass"
# Other apps
cask "ghostty"
cask "itsycal"
cask "rectangle"

View File

@@ -0,0 +1,4 @@
# Updates Homebrew installation from the Brewfile
function update-brewfile() {
brew bundle check --file ~/.config/Brewfile && brew bundle --file ~/.config/Brewfile
}