diff options
| author | seth <[email protected]> | 2024-02-07 18:03:24 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2024-02-07 18:27:45 -0500 |
| commit | cffffeb678e9a1078eeba0f19c9607cda9f31bed (patch) | |
| tree | 8b8f68aa357becad06845f15b7e528474041371c /modules/darwin/desktop.nix | |
| parent | 48712d44fde91d2685089cca7f9d88295fd59817 (diff) | |
modules/nixos+darwin: move to traits + archetypes model
Diffstat (limited to 'modules/darwin/desktop.nix')
| -rw-r--r-- | modules/darwin/desktop.nix | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/modules/darwin/desktop.nix b/modules/darwin/desktop.nix deleted file mode 100644 index c6eb106..0000000 --- a/modules/darwin/desktop.nix +++ /dev/null @@ -1,39 +0,0 @@ -{ - config, - lib, - pkgs, - ... -}: let - cfg = config.desktop; -in { - options.desktop.enable = lib.mkEnableOption "base desktop settings"; - - config = lib.mkIf cfg.enable { - fonts.fonts = with pkgs; - lib.mkDefault [ - (nerdfonts.override {fonts = ["FiraCode"];}) - ]; - - homebrew = { - enable = lib.mkDefault true; - - onActivation = lib.mkDefault { - autoUpdate = true; - cleanup = "zap"; - upgrade = true; - }; - - caskArgs = { - no_quarantine = true; - require_sha = false; - }; - - casks = [ - "chromium" - "iterm2" - ]; - }; - - programs.gnupg.agent.enable = lib.mkDefault true; - }; -} |
