nix/modules/homebrew.nix
2025-08-28 17:01:11 +02:00

24 lines
483 B
Nix

{ config, pkgs, ... }:
{
# Homebrew configuration for package management
homebrew = {
enable = true;
onActivation = {
autoUpdate = true;
cleanup = "zap"; # Removes unlisted formulae/casks
upgrade = true;
};
brews = [
# Command-line tools go here
# Example: "wget"
];
casks = [
# GUI applications go here
# Example: "google-chrome"
];
taps = [
# Additional repositories if needed
];
};
}