You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, to enable greedy updates for casks, we need to manually add the greedy option to each cask definition like this:
casks = [
{
name = "anytype";
greedy = true;
}
{
name = "vscodium";
greedy = true;
}
];
This becomes tedious and repetitive when managing multiple casks. It would be more convenient to have a global option in caskArgs, similar to how no_quarantine works:
homebrew = {
enable = true;
caskArgs = {
greedy = true; # Would apply to all casks
no_quarantine = true;
};
casks = [
"anytype"
"vscodium"
];
};
This would simplify configuration and maintain consistency across all casks while reducing the likelihood of configuration errors.
The text was updated successfully, but these errors were encountered:
x6ufeng
changed the title
Feature Request: Add global greedy option in caskArgs #52
Feature Request: Add global greedy option in homebrew.* options caskArgs #52
Nov 28, 2024
x6ufeng
changed the title
Feature Request: Add global greedy option in homebrew.* options caskArgs #52
Feature Request: Add global greedy option in homebrew.* options caskArgs
Dec 25, 2024
issue
Currently, to enable greedy updates for casks, we need to manually add the greedy option to each cask definition like this:
This becomes tedious and repetitive when managing multiple casks. It would be more convenient to have a global option in caskArgs, similar to how no_quarantine works:
This would simplify configuration and maintain consistency across all casks while reducing the likelihood of configuration errors.
The text was updated successfully, but these errors were encountered: