mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-31 04:04:45 +00:00
Merge e2361f4496
into 53d0f0ed11
This commit is contained in:
commit
9635615563
1 changed files with 10 additions and 1 deletions
|
@ -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 = [ ];
|
||||
|
|
Loading…
Add table
Reference in a new issue