summaryrefslogtreecommitdiff
path: root/modules/darwin/defaults/programs.nix
blob: 48913c0c56526a7e68b65f1940d59fe7dd4f8560 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ pkgs, ... }:

{
  # NOTE: Not using the actual `programs.vim` module to avoid an annoying warning
  environment.systemPackages = [ pkgs.vim ];

  programs = {
    bash.enable = true;
    zsh.enable = true;
  };
}