From a8630322f77dbb7be4810099a42352b9278996a1 Mon Sep 17 00:00:00 2001 From: seth Date: Sun, 1 Oct 2023 10:41:09 -0400 Subject: treewide!: flatten to parts/ layout --- parts/modules/darwin/desktop/homebrew.nix | 37 +++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 parts/modules/darwin/desktop/homebrew.nix (limited to 'parts/modules/darwin/desktop/homebrew.nix') diff --git a/parts/modules/darwin/desktop/homebrew.nix b/parts/modules/darwin/desktop/homebrew.nix new file mode 100644 index 0000000..4a58ae9 --- /dev/null +++ b/parts/modules/darwin/desktop/homebrew.nix @@ -0,0 +1,37 @@ +{ + 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 [ + "firefox" + (lib.recursiveUpdate (noQuarantine "chromium") (skipSha "chromium")) + ]; + }; + }; +} -- cgit v1.2.3