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

20 lines
290 B
Nix

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