From e2361f44961f8a9cc7bf3c00e5c2d472b7a7b93c Mon Sep 17 00:00:00 2001 From: Varun Narravula Date: Mon, 10 Mar 2025 19:19:17 -0700 Subject: [PATCH] homebrew: allow setting greedy for all casks by default --- modules/homebrew.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/modules/homebrew.nix b/modules/homebrew.nix index 10764fbb..7b8f8b0b 100644 --- a/modules/homebrew.nix +++ b/modules/homebrew.nix @@ -502,7 +502,9 @@ let [](#opt-homebrew.caskArgs) for the available options. ''; }; - greedy = mkNullOrBoolOption { + greedy = mkOption { + type = types.nullOr types.bool; + default = cfg.greedyCasks; description = '' Whether to always upgrade this cask regardless of whether it's unversioned or it updates itself. @@ -631,6 +633,13 @@ in ''; }; + greedyCasks = mkNullOrBoolOption { + description = '' + Whether to always upgrade casks listed in [](#opt-homebrew.casks) regardless + of whether it's unversioned or it updates itself. + ''; + }; + brews = mkOption { type = with types; listOf (coercedTo str (name: { inherit name; }) (submodule brewOptions)); default = [ ];