diff options
| author | seth <[email protected]> | 2023-10-30 04:22:32 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-10-30 09:46:15 +0000 |
| commit | 10b0df38b4286237b56ff9177f8d4c5676bfb5c1 (patch) | |
| tree | ab298c74339bf9bc41571fa88746ecd9c522fbdf /modules/darwin/desktop.nix | |
| parent | 4c2c60a4f2b14c1e6ffaffe5e301dc31ac4fed0f (diff) | |
tree-wide: refactor
i went overboard on modules. this is much comfier
Diffstat (limited to 'modules/darwin/desktop.nix')
| -rw-r--r-- | modules/darwin/desktop.nix | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/modules/darwin/desktop.nix b/modules/darwin/desktop.nix new file mode 100644 index 0000000..23664f9 --- /dev/null +++ b/modules/darwin/desktop.nix @@ -0,0 +1,30 @@ +{ + lib, + pkgs, + ... +}: { + fonts.fonts = with pkgs; + lib.mkDefault [ + (nerdfonts.override {fonts = ["FiraCode"];}) + ]; + + homebrew = { + enable = lib.mkDefault true; + caskArgs.require_sha = true; + onActivation = lib.mkDefault { + autoUpdate = true; + cleanup = "zap"; + upgrade = true; + }; + + caskArgs = { + no_quarantine = true; + }; + + casks = [ + "chromium" + ]; + }; + + programs.gnupg.agent.enable = lib.mkDefault true; +} |
