NixFiles/systems/mmacbookpro/apps.nix
2023-04-22 23:06:09 +01:00

67 lines
1.1 KiB
Nix

{ config, ... }:
{
homebrew = {
enable = true;
onActivation = {
autoUpdate = true;
cleanup = "zap";
};
taps = [
{
name = "popcorn-official/popcorn-desktop";
clone_target = "https://github.com/popcorn-official/popcorn-desktop.git";
force_auto_update = true;
}
{
name = "kde-mac/kde";
clone_target = "https://invent.kde.org/packaging/homebrew-kde.git";
force_auto_update = true;
}
];
casks = [
# Media
/* "popcorn-time" */
"syncplay"
"deluge"
"mpv"
# Messaging
"signal"
"nheko"
# Games
"minecraft"
"prismlauncher"
# Design
"sketch"
# Development
"neovide"
"pycharm"
"webstorm"
"clion"
"goland"
"appcode"
"android-studio"
"tower"
"secretive"
# Learning
"anki"
# Tools
"boop"
"haptickey"
"kdeconnect"
"hazeover"
"yubico-authenticator"
];
masApps = {
"Codye" = 1516894961;
"Xcode" = 497799835;
};
};
}