MyNixOS website logo

List of Homebrew formulae to install.

Formulae defined as strings, e.g., "imagemagick", are a shorthand for:

{ name = "imagemagick"; }

Declarations
    Type
    list of ((submodule) or string convertible to it)
    Default
    [ ]
    Example
    # Adapted examples from https://github.com/Homebrew/homebrew-bundle#usage
    [
      # `brew install`
      "imagemagick"
    
      # `brew install --with-rmtp`, `brew services restart` on version changes
      {
        name = "denji/nginx/nginx-full";
        args = [ "with-rmtp" ];
        restart_service = "changed";
      }
    
      # `brew install`, always `brew services restart`, `brew link`, `brew unlink mysql` (if it is installed)
      {
        name = "[email protected]";
        restart_service = true;
        link = true;
        conflicts_with = [ "mysql" ];
      }
    ]