blob: 0a7a2c92a1046765dd8991151cefd38610757afe (
plain) (
tree)
|
|
{ ... }:
{
# Required for homebrew on aarch64
environment.systemPath = [ "/opt/homebrew/bin" "/opt/homebrew/sbin" ];
homebrew = {
enable = true;
onActivation.autoUpdate = true;
onActivation.upgrade = true;
brews = [
"aspell" # spelling
"kind" # to run local k8s cluster
"envoy" # to do some testing with envoy
];
taps = [
"homebrew/cask-fonts"
];
casks = [
"1password-cli"
"docker"
"element"
"emacs"
"font-monaspace" # https://github.com/githubnext/monaspace
"font-source-code-pro"
"iterm2"
"netnewswire"
"transmission"
"vlc"
"wireshark"
"zoom"
];
};
}
|