summaryrefslogtreecommitdiff
path: root/modules/darwin/desktop/homebrew.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/darwin/desktop/homebrew.nix')
-rw-r--r--modules/darwin/desktop/homebrew.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/modules/darwin/desktop/homebrew.nix b/modules/darwin/desktop/homebrew.nix
deleted file mode 100644
index 93fe4ad..0000000
--- a/modules/darwin/desktop/homebrew.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ config, lib, ... }:
-let
- cfg = config.desktop.homebrew;
-in
-{
- options.desktop.homebrew = {
- enable = lib.mkEnableOption "Homebrew integration" // {
- default = config.desktop.enable;
- };
- };
-
- config = lib.mkIf cfg.enable {
- homebrew = {
- enable = true;
-
- onActivation = lib.mkDefault {
- autoUpdate = true;
- cleanup = "zap";
- upgrade = true;
- };
-
- caskArgs = {
- no_quarantine = true;
- require_sha = false;
- };
- };
- };
-}