1
0
Fork 0
mirror of https://github.com/ryanccn/flake.git synced 2025-12-06 00:00:44 +01:00
flake/systems/caladan/homebrew.nix
2025-08-15 18:22:33 +08:00

34 lines
533 B
Nix

# SPDX-FileCopyrightText: 2025 Ryan Cao <hello@ryanccn.dev>
#
# SPDX-License-Identifier: Apache-2.0
{
environment.variables = {
HOMEBREW_NO_ANALYTICS = "1";
HOMEBREW_NO_INSECURE_REDIRECT = "1";
HOMEBREW_NO_EMOJI = "1";
};
homebrew = {
enable = true;
caskArgs = {
require_sha = true;
};
onActivation = {
autoUpdate = true;
cleanup = "uninstall";
upgrade = true;
};
brews = [
"gnupg"
"pandoc"
];
casks = [
"blackhole-16ch"
];
};
}