all repos — nixfiles @ c5b94cc55f2fc7916ca59017ce380786dd9fd450

System and user configuration, managed by nix and home-manager

system/settings/darwin.nix (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ 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";
    interactiveShellInit = ''
      if [[ "$(locale LC_CTYPE)" == "UTF-8" ]]; then
        setopt COMBINING_CHARS
      fi
    '';
  };

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