add support for installing vscode extensions via brew

This commit is contained in:
Frank Chiarulli Jr. 2024-12-14 12:47:19 -05:00
parent a35b08d09e
commit fdbfb1dc1b
2 changed files with 28 additions and 4 deletions

View file

@ -70,6 +70,10 @@ in
"whalebrew/wget"
];
homebrew.vscode = [
"golang.go"
];
test = ''
bf=${lib.escapeShellArg config.homebrew.brewfile}
@ -97,5 +101,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"''}
'';
}