From 6e70c2e409b632c113364ce34c79aa1385d8e56f Mon Sep 17 00:00:00 2001 From: Seth Flynn Date: Thu, 13 Feb 2025 18:54:26 -0500 Subject: darwin/desktop: move to mixins and defaults --- modules/darwin/mixins/homebrew.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 modules/darwin/mixins/homebrew.nix (limited to 'modules/darwin/mixins/homebrew.nix') diff --git a/modules/darwin/mixins/homebrew.nix b/modules/darwin/mixins/homebrew.nix new file mode 100644 index 0000000..1dea4cd --- /dev/null +++ b/modules/darwin/mixins/homebrew.nix @@ -0,0 +1,18 @@ +{ lib, ... }: + +{ + config = { + homebrew = { + onActivation = lib.mkDefault { + autoUpdate = true; + cleanup = "zap"; + upgrade = true; + }; + + caskArgs = { + no_quarantine = true; + require_sha = false; + }; + }; + }; +} -- cgit v1.2.3