added homebrew casks

This commit is contained in:
Maddie H 2023-04-18 12:52:18 +01:00
parent 23a4fd6a77
commit 0744897f7f
Signed by: maddie
GPG Key ID: C296DE8C9053683F

View File

@ -0,0 +1,30 @@
{ config, ... }:
{
homebrew = {
enable = true;
taps = [
{
name = "popcorn-official/popcorn-desktop";
clone_target = "https://github.com/popcorn-official/popcorn-desktop.git";
force_auto_update = true;
}
];
casks = [
# Media
"popcorn-time"
"syncplay"
# Games
/* "minecraft" */
/* "prismlauncher" */
# IDEs
"pycharm"
"webstorm"
"clion"
"goland"
"android-studio"
];
};
}