diff options
| author | seth <[email protected]> | 2023-10-01 10:41:09 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-10-01 10:49:46 -0400 |
| commit | a8630322f77dbb7be4810099a42352b9278996a1 (patch) | |
| tree | b8df66a7e5b9d8c31b27a4a9b357ff7e4b9d418f /modules/darwin/desktop | |
| parent | 30f55e656d344e017f66ecbae8eb27cf13ba53bb (diff) | |
treewide!: flatten to parts/ layout
Diffstat (limited to 'modules/darwin/desktop')
| -rw-r--r-- | modules/darwin/desktop/default.nix | 27 | ||||
| -rw-r--r-- | modules/darwin/desktop/homebrew.nix | 37 |
2 files changed, 0 insertions, 64 deletions
diff --git a/modules/darwin/desktop/default.nix b/modules/darwin/desktop/default.nix deleted file mode 100644 index 1f71642..0000000 --- a/modules/darwin/desktop/default.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ - config, - lib, - pkgs, - ... -}: let - cfg = config.desktop; - inherit (lib) mkDefault mkEnableOption mkIf; -in { - options.desktop = { - enable = mkEnableOption "enable desktop darwin support"; - gpg.enable = mkEnableOption "enable gpg"; - }; - - imports = [ - ./homebrew.nix - ]; - - config = mkIf cfg.enable { - fonts.fonts = with pkgs; - mkDefault [ - (nerdfonts.override {fonts = ["FiraCode"];}) - ]; - - programs.gnupg.agent.enable = cfg.gpg.enable; - }; -} diff --git a/modules/darwin/desktop/homebrew.nix b/modules/darwin/desktop/homebrew.nix deleted file mode 100644 index 4a58ae9..0000000 --- a/modules/darwin/desktop/homebrew.nix +++ /dev/null @@ -1,37 +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 [ - "firefox" - (lib.recursiveUpdate (noQuarantine "chromium") (skipSha "chromium")) - ]; - }; - }; -} |
