Add support for installing vscode extensions via brew (#1222)

This commit is contained in:
Michael Hoang 2026-02-10 15:13:34 +00:00 committed by GitHub
commit 7c952d9a52
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 28 additions and 4 deletions

View file

@ -72,6 +72,10 @@ in
"whalebrew/wget"
];
homebrew.vscode = [
"golang.go"
];
test = ''
bf=${lib.escapeShellArg config.homebrew.brewfile}
@ -99,5 +103,8 @@ in
echo "checking whalebrew entries in Brewfile" >&2
${mkTest "whalebrew/wget" ''whalebrew "whalebrew/wget"''}
echo "checking vscode entries in Brewfile" >&2
${mkTest "golang.go" ''vscode "golang.go"''}
'';
}