dotfiles/machines/sashimi/brew.nix

58 lines
1.2 KiB
Nix
Raw Normal View History

2023-02-20 08:58:46 +01:00
{
homebrew = {
enable = true;
2023-03-09 14:27:51 +01:00
caskArgs.require_sha = true;
onActivation = {
autoUpdate = true;
cleanup = "uninstall";
upgrade = true;
};
2023-02-20 08:58:46 +01:00
casks = let
skipSha = name: {
inherit name;
args = {require_sha = false;};
};
noQuarantine = name: {
inherit name;
args = {no_quarantine = true;};
};
in [
"1password"
"alfred"
"bitwarden"
"blender"
"discord"
"docker"
"firefox"
"iina"
2023-02-20 08:58:46 +01:00
"imageoptim"
"jetbrains-toolbox"
"karabiner-elements"
"keka"
"little-snitch"
2023-05-31 21:48:14 +02:00
"macfuse"
2023-02-20 08:58:46 +01:00
"mattermost"
"mullvadvpn"
"obs"
"postman"
"rustdesk"
"uninstallpkg"
2023-03-30 04:28:43 +02:00
"utm"
2023-02-20 08:58:46 +01:00
"yubico-yubikey-manager"
(noQuarantine "easy-move-plus-resize")
(noQuarantine "eloston-chromium")
(skipSha "affinity-designer")
(skipSha "affinity-photo")
(skipSha "affinity-publisher")
(skipSha "element")
2023-02-20 08:58:46 +01:00
(skipSha "sizzy")
# drivers
"elgato-wave-link"
"uhk-agent"
(noQuarantine "vial")
];
2023-05-29 14:10:26 +02:00
taps = ["homebrew/cask" "homebrew/cask-drivers"];
2023-02-20 08:58:46 +01:00
};
}