MyNixOS website logo

List of Homebrew casks to install.

Casks defined as strings, e.g., "google-chrome", are a shorthand for:

{ name = "google-chrome"; }

Declarations
    Type
    list of ((submodule) or string convertible to it)
    Default
    [ ]
    Example
    # Adapted examples from https://github.com/Homebrew/homebrew-bundle#usage
    [
      # `brew install --cask`
      "google-chrome"
    
      # `brew install --cask --appdir=~/my-apps/Applications`
      {
        name = "firefox";
        args = { appdir = "~/my-apps/Applications"; };
      }
    
      # always upgrade auto-updated or unversioned cask to latest version even if already installed
      {
        name = "opera";
        greedy = true;
      }
    ]