diff --git a/systems/mmacbookpro/apps.nix b/systems/mmacbookpro/apps.nix new file mode 100644 index 0000000..191acfa --- /dev/null +++ b/systems/mmacbookpro/apps.nix @@ -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" + ]; + }; +}