config/systems/mmacbookpro/apps.nix

33 lines
540 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
2023-04-18 20:18:00 +01:00
/* "popcorn-time" */
2023-04-18 12:52:18 +01:00
"syncplay"
2023-04-18 20:18:00 +01:00
"deluge"
2023-04-18 12:52:18 +01:00
# Games
/* "minecraft" */
/* "prismlauncher" */
# IDEs
2023-04-19 13:46:56 +01:00
"neovide"
2023-04-18 12:52:18 +01:00
"pycharm"
"webstorm"
"clion"
"goland"
"android-studio"
];
};
}