dotfiles/hosts/ts-tl-mbp/brew.nix
2023-01-01 22:55:07 -05:00

17 lines
240 B
Nix

{ pkgs, config, lib, ... }:
{
homebrew = {
enable = true;
casks = [
"alfred"
"discord"
"divvy"
"firefox"
"jetbrains-toolbox"
"karabiner-elements"
"slack"
"thunderbird"
];
};
}