diff options
| author | Michael Hoang <Enzime@users.noreply.github.com> | 2025-01-06 01:04:51 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-06 01:04:51 +1100 |
| commit | ba9b3173b0f642ada42b78fb9dfc37ca82266f6c (patch) | |
| tree | df9bff54346993dc3e891528050a49efa22f37a3 | |
| parent | a464e5ba8cfb10a81599dbd422f30f5d37997916 (diff) | |
| parent | 6ee6262d2468cf053f39cb53ea6272af337f2cf7 (diff) | |
Merge pull request #1253 from jelmansouri/feat/casks-ignore-deps
Add --ignore-dependencies option for casks
| -rw-r--r-- | modules/homebrew.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/homebrew.nix b/modules/homebrew.nix index 7aee9e1..d975170 100644 --- a/modules/homebrew.nix +++ b/modules/homebrew.nix @@ -396,6 +396,9 @@ let no_binaries = mkNullOrBoolOption { description = "Whether to disable linking of helper executables."; }; + ignore_dependencies = mkNullOrBoolOption { + description = "Ignore casks dependencies in case you manage them extrenally"; + }; brewfileLine = mkInternalOption { type = types.nullOr types.str; }; }; |
