flake/darwin/packages/homebrew.nix

33 lines
514 B
Nix
Raw Normal View History

{...}: {
2023-09-19 00:17:43 +00:00
homebrew = {
enable = true;
brews = [
"fastfetch" # fastfetch is broken in nixpkgs
];
casks = [
#"alacritty"
#"android-platform-tools"
#"yesplaymusic"
#"vscodium"
"alt-tab"
"altserver"
2023-09-19 00:17:43 +00:00
"balenaetcher"
2023-10-09 06:52:33 +00:00
#"clashx"
2023-09-19 00:17:43 +00:00
"opencore-patcher"
2023-11-02 10:30:09 +00:00
"squirrel"
2023-09-19 00:17:43 +00:00
#"element"
"telegram"
"librewolf"
"google-chrome"
"activate" # koekeishiya/formulae
];
taps = [
"b3z/small" # activate
];
};
}