summaryrefslogtreecommitdiff
path: root/modules/darwin/defaults/programs.nix
diff options
context:
space:
mode:
authorSeth Flynn <[email protected]>2025-02-13 18:54:26 -0500
committerSeth Flynn <[email protected]>2025-02-13 22:09:11 -0500
commit6e70c2e409b632c113364ce34c79aa1385d8e56f (patch)
tree7c4464e4d410e9043e2baa4dd5d863630dd9efe8 /modules/darwin/defaults/programs.nix
parent3a2a22f50343b887a85cf18fca4720f751eeafb8 (diff)
darwin/desktop: move to mixins and defaults
Diffstat (limited to 'modules/darwin/defaults/programs.nix')
-rw-r--r--modules/darwin/defaults/programs.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/darwin/defaults/programs.nix b/modules/darwin/defaults/programs.nix
index 3f25ad8..48913c0 100644
--- a/modules/darwin/defaults/programs.nix
+++ b/modules/darwin/defaults/programs.nix
@@ -1,7 +1,11 @@
+{ pkgs, ... }:
+
{
+ # NOTE: Not using the actual `programs.vim` module to avoid an annoying warning
+ environment.systemPackages = [ pkgs.vim ];
+
programs = {
bash.enable = true;
- vim.enable = true;
zsh.enable = true;
};
}