dotfiles/hosts/ts-tl-mbp/brew.nix

16 lines
214 B
Nix
Raw Normal View History

2023-01-02 03:24:23 +00:00
{ pkgs, config, lib, ... }:
{
homebrew = {
enable = true;
casks = [
2023-01-02 03:44:45 +00:00
"alfred"
"discord"
"divvy"
"firefox"
"karabiner-elements"
"slack"
"thunderbird"
2023-01-02 03:24:23 +00:00
];
};
}