NixFiles/systems/mmacbookpro/apps.nix

31 lines
503 B
Nix
Raw Normal View History

2023-04-18 12:52:18 +01:00
{ 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"
];
};
}