48 lines
844 B
Nix
48 lines
844 B
Nix
#
|
|
# Mac app store packages for our Darwin nix installs.
|
|
#
|
|
# vim: et:ts=2:sw=2:
|
|
#
|
|
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
|
|
homebrew = {
|
|
|
|
# IDs are the important thing, here.
|
|
# Find them using "mas search".
|
|
masApps = {
|
|
# Core apps.
|
|
"Fantastical" = 975937182;
|
|
"Magnet" = 441258766;
|
|
|
|
# Reading and writing.
|
|
"Airmail" = 918858936;
|
|
"Pocket" = 568494494;
|
|
"iA Writer" = 775737590;
|
|
|
|
# Work stuffs.
|
|
"Singlebox" = 1551183766;
|
|
|
|
# Utilities.
|
|
"Jayson" = 1468691718;
|
|
"UTM" = 1538878817;
|
|
"Webcam Settings" = 533696630;
|
|
"Microsoft Remote Desktop" = 1295203466;
|
|
|
|
# Safari extensions.
|
|
"1Blocker" = 1365531024;
|
|
"Bitwarden" = 1352778147;
|
|
"Noir" = 1592917505;
|
|
"Save to Pocket" = 1477385213;
|
|
"Tamperish" = 1516885392;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|