summary refs log tree commit diff stats
path: root/system/settings/darwin.nix
blob: 8fe08a4eed01cd9a8b4380f09e14c49be55fa9b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ config, pkgs, ... }:

{
  services.nix-daemon = {
    enable = true;
    enableSocketListener = true;
  };

  programs.zsh = {
    enable = true;
    enableCompletion = false; # Causes >2s startup time, overlaps home-manager config
    enableBashCompletion = true;
    loginShellInit = builtins.readFile "/System/Library/Templates/Data/private/etc/zprofile";
  };

  environment.systemPackages = with pkgs; [
    watch
    coreutils-prefixed
  ];
}