LnL7 / nix-darwin

nix modules for darwin
MIT License
2.44k stars 408 forks source link

brew tap problem #895

Open PlumpMath opened 4 months ago

PlumpMath commented 4 months ago

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;
johnhampton commented 4 months ago

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

fabstu commented 3 weeks ago

Had to comment out homebrew/cask under taps:

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