NixFiles/systems/mmacbookpro/apps.nix
2023-04-18 20:18:00 +01:00

32 lines
524 B
Nix

{ 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"
"deluge"
# Games
/* "minecraft" */
/* "prismlauncher" */
# IDEs
"pycharm"
"webstorm"
"clion"
"goland"
"android-studio"
];
};
}