summaryrefslogtreecommitdiff
path: root/modules/darwin/mixins/homebrew.nix
blob: 1dea4cdf670513bd13be2b35bf5445c2990c7fd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, ... }:

{
  config = {
    homebrew = {
      onActivation = lib.mkDefault {
        autoUpdate = true;
        cleanup = "zap";
        upgrade = true;
      };

      caskArgs = {
        no_quarantine = true;
        require_sha = false;
      };
    };
  };
}