summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorMichael Hoang <Enzime@users.noreply.github.com>2025-01-06 01:04:51 +1100
committerGitHub <noreply@github.com>2025-01-06 01:04:51 +1100
commitba9b3173b0f642ada42b78fb9dfc37ca82266f6c (patch)
treedf9bff54346993dc3e891528050a49efa22f37a3 /modules
parenta464e5ba8cfb10a81599dbd422f30f5d37997916 (diff)
parent6ee6262d2468cf053f39cb53ea6272af337f2cf7 (diff)
Merge pull request #1253 from jelmansouri/feat/casks-ignore-deps
Add --ignore-dependencies option for casks
Diffstat (limited to 'modules')
-rw-r--r--modules/homebrew.nix3
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; };
};