nix-darwin icon indicating copy to clipboard operation
nix-darwin copied to clipboard

brew tap problem

Open PlumpMath opened this issue 1 year ago • 2 comments

Error: No available tap homebrew/cask. Run brew tap --force homebrew/cask to tap homebrew/cask!

What's the problem with this happening every time?

  enable = true;
  onActivation = {
    autoUpdate = true;
    upgrade = true;
    cleanup = "zap";
  };
  global.brewfile = true;

PlumpMath avatar Mar 01 '24 22:03 PlumpMath

It might be related to this: https://github.com/Homebrew/brew/issues/16761

johnhampton avatar Mar 02 '24 18:03 johnhampton

Had to comment out homebrew/cask under taps:

homebrew.taps = [
    # "homebrew/cask"
    "homebrew/cask-versions"
];

fabstu avatar Jun 11 '24 18:06 fabstu