summaryrefslogtreecommitdiff
path: root/parts/modules/darwin/desktop/homebrew.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-10-30 04:22:32 -0400
committerseth <[email protected]>2023-10-30 09:46:15 +0000
commit10b0df38b4286237b56ff9177f8d4c5676bfb5c1 (patch)
treeab298c74339bf9bc41571fa88746ecd9c522fbdf /parts/modules/darwin/desktop/homebrew.nix
parent4c2c60a4f2b14c1e6ffaffe5e301dc31ac4fed0f (diff)
tree-wide: refactor
i went overboard on modules. this is much comfier
Diffstat (limited to 'parts/modules/darwin/desktop/homebrew.nix')
-rw-r--r--parts/modules/darwin/desktop/homebrew.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/parts/modules/darwin/desktop/homebrew.nix b/parts/modules/darwin/desktop/homebrew.nix
deleted file mode 100644
index a5f705e..0000000
--- a/parts/modules/darwin/desktop/homebrew.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- config,
- lib,
- ...
-}: let
- cfg = config.desktop.homebrew;
- inherit (lib) mkDefault mkEnableOption mkIf;
-in {
- options.desktop.homebrew.enable = mkEnableOption "enable homebrew support";
-
- config = mkIf cfg.enable {
- homebrew = {
- enable = mkDefault true;
- caskArgs.require_sha = true;
- onActivation = mkDefault {
- autoUpdate = true;
- cleanup = "uninstall";
- upgrade = true;
- };
-
- casks = let
- # thanks @nekowinston :p
- skipSha = name: {
- inherit name;
- args = {require_sha = false;};
- };
- noQuarantine = name: {
- inherit name;
- args = {no_quarantine = true;};
- };
- in [
- (lib.recursiveUpdate (noQuarantine "chromium") (skipSha "chromium"))
- ];
- };
- };
-}