NixFiles/systems/mmacbookpro/apps.nix

63 lines
1.0 KiB
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;
}
2023-04-20 17:25:53 +01:00
{
name = "kde-mac/kde";
clone_target = "https://invent.kde.org/packaging/homebrew-kde.git";
force_auto_update = true;
}
2023-04-18 12:52:18 +01:00
];
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-20 17:25:53 +01:00
"mpv"
# Messaging
"signal"
"nheko"
2023-04-18 12:52:18 +01:00
# Games
2023-04-20 17:25:53 +01:00
"minecraft"
"prismlauncher"
2023-04-18 12:52:18 +01:00
2023-04-22 17:09:03 +01:00
# Design
"sketch"
2023-04-21 21:01:04 +01:00
# Development
2023-04-19 13:46:56 +01:00
"neovide"
2023-04-18 12:52:18 +01:00
"pycharm"
"webstorm"
"clion"
"goland"
2023-04-20 17:25:53 +01:00
"appcode"
2023-04-18 12:52:18 +01:00
"android-studio"
2023-04-21 21:01:04 +01:00
"tower"
2023-04-22 17:09:03 +01:00
"secretive"
2023-04-20 17:25:53 +01:00
# Learning
"anki"
# Tools
"boop"
"haptickey"
"kdeconnect"
2023-04-21 21:01:04 +01:00
"hazeover"
2023-04-22 22:57:04 +01:00
"yubico-authenticator"
2023-04-18 12:52:18 +01:00
];
2023-04-21 21:01:04 +01:00
masApps = {
"Codye" = 1516894961;
"Xcode" = 497799835;
};
2023-04-18 12:52:18 +01:00
};
}