dotfiles/system/homebrew.nix
2025-07-12 12:37:52 +03:00

21 lines
397 B
Nix

{ pkgs, ... }:
{
homebrew = {
enable = true;
brews = [ "asdf" "libyaml" "libpq" "k9s"
{
name = "postgresql@17";
restart_service = "changed";
}
];
casks = [ "raycast" "firefox" "slack" "google-chrome" "cursor" "qbittorrent" "vlc" "obsidian" ];
onActivation = {
cleanup = "zap";
};
global = {
autoUpdate = false;
};
};
}