-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdarwin-configuration.nix
303 lines (254 loc) · 6.46 KB
/
darwin-configuration.nix
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
{ config, lib, pkgs, ... }:
{
# Enable full keyboard access, e.g. tab in dialogs
system.defaults.NSGlobalDomain.AppleKeyboardUIMode = 3;
# Disable press-and-hold in favor of key repeat
system.defaults.NSGlobalDomain.ApplePressAndHoldEnabled = false;
system.defaults.NSGlobalDomain.InitialKeyRepeat = 10;
system.defaults.NSGlobalDomain.KeyRepeat = 1;
system.defaults.NSGlobalDomain.NSAutomaticDashSubstitutionEnabled = false;
system.defaults.NSGlobalDomain.NSAutomaticQuoteSubstitutionEnabled = false;
system.defaults.NSGlobalDomain.NSAutomaticSpellingCorrectionEnabled = true;
system.defaults.NSGlobalDomain.NSNavPanelExpandedStateForSaveMode = true;
system.defaults.NSGlobalDomain.NSNavPanelExpandedStateForSaveMode2 = true;
system.defaults.dock.autohide = true;
system.defaults.dock.orientation = "right";
system.defaults.dock.showhidden = true;
system.defaults.dock.mru-spaces = false;
system.defaults.finder.AppleShowAllExtensions = true;
system.defaults.finder.QuitMenuItem = true;
system.defaults.finder.FXEnableExtensionChangeWarning = false;
system.defaults.trackpad.Clicking = true;
# TODO: dig through https://github.com/mathiasbynens/dotfiles/blob/master/.macos
# List packages installed in system profile. To search by name, run:
# $ nix-env -qaP | grep wget
environment.systemPackages = (with pkgs; [
# Audio/Video
ffmpeg
flac
fluidsynth
graphicsmagick
lame
# FIXME: timidity
# BEAM
elixir
erlang
hex2nix
lfe
rebar3-open
# C/C++
cc
gcc
# gperftools
# Cryptography
gnupg
# Database
# mysql
# postgresql
# sqlite
# Document Preparation
# asciidoc
# docbook5
# docbook5_xsl
ghostscript
groff
latex2html
# Engraving
# FIXME: frescobaldi
my-lilypond
musescore
# Git
git
git-crypt
git-lfs
# TODO: gitAndTools.ghi (add package)
# NOTE: https://github.com/petervanderdoes/gitflow-avh
gitAndTools.gitflow
gitAndTools.hub
# Go
# go
# Graphing/Statistics
# gnuplot
graphviz
# FIXME: R
# Haskell
cabal-install
ghc
# FIXME: stack # wait for binary, I guess
# JavaScript
nodejs
npm2nix
nodePackages.node2nix
# TODO: planck (add package)
# JVM
# boot
clojure
leiningen
maven
jdk
# Libraries
# libsndfile # NOTE: used by fluidsynth
# openssl
# Lisp/Scheme
# clisp-tip # FIXME: https://github.com/NixOS/nixpkgs/issues/20062
guile
# FIXME: racket
# FIXME: sbcl
# Messaging
# zeromq
# Miscellaneous
# FIXME: calibre
# FIXME: exercism
# FIXME: kindlegen
skim
# .NET
# mono
# Nix
# nixops
# nix-repl
# OCaml
# ocaml
# camlp5
# opam
# Protocol Buffers
protobuf
# Python
python # NOTE: `python2`
python3 # NOTE: `python` (not `python3`)
# Shell
# FIXME: bash
fish
# SML
# FIXME: smlnj
# NOTE: smlnj needs MaxOSX10.9.sdk
# Use https://github.com/devernay/xcodelegacy to install it.
# FIXME: polyml
# Theorem Proving
# coq
# Tools
aspell
aspellDicts.de
aspellDicts.en
aspellDicts.es
aspellDicts.fr
aspellDicts.it
aspellDicts.sv
autojump
automake
awscli
coreutils
# TODO: csvprintf (add package)
fpp
gawk
gnumake
gnused
gnutar
# FIXME: highlight (g++: command not found)
htop
moreutils
# mosh
openssh
# p7zip
rlwrap
silver-searcher
# FIXME: sshfs-fuse
sloccount
# TODO: thefuck (add package)
tree
wakatime
watch
watchman
# Virtualization
# FIXME: xhyve
# src/vmm/vmm_mem.c:32:10: fatal error: 'Hypervisor/hv.h' file not found
# Web/JSON
curl
httpie
html-tidy
jid
jq
# TODO: nginx # NOTE: will need to configure daemon too
# ngrok # TODO: 2.x
# TODO: prometheus
wget
]) ++ (with pkgs.elmPackages; [
# elm
]) ++ (with pkgs.haskellPackages; [
cabal2nix
# TODO: idris
# intero
pandoc
pointfree
pointful
# FIXME: purescript
titlecase
]) ++ (with pkgs.python27Packages; [
pywatchman
]) ++ (with pkgs.python35Packages; [
grip
pip
pygments
]);
services.nix-daemon.enable = true;
services.nix-daemon.tempDir = "/nix/tmp";
# Recreate /run/current-system symlink after boot.
services.activate-system.enable = true;
# programs.nix-script.enable = true;
programs.fish.enable = true;
programs.fish.variables.cfg = "$HOME/.nixpkgs/darwin-config.nix";
programs.fish.variables.darwin = "$HOME/.nix-defexpr/darwin";
programs.fish.variables.pkgs = "$HOME/.nix-defexpr/nixpkgs";
programs.fish.variables.ASPELL_CONF =
"data-dir /run/current-system/sw/lib/aspell/";
programs.fish.interactiveShellInit = ''
function hicat -d 'Hackish hicat clone via highlight'
highlight -O xterm256 $argv | less -cR
end
'';
environment.shellAliases.gpg = "gpg2";
environment.shellAliases.k = "clear";
environment.shellAliases.l = "ls -Glah";
environment.shellAliases.ll = "ls -Glh";
environment.shellAliases.ls = "ls -G";
# TODO: programs.tmux
nix.nixPath = [ # Use local nixpkgs checkout instead of channels.
"darwin=$HOME/.nix-defexpr/darwin"
"darwin-config=$HOME/.nixpkgs/darwin-configuration.nix"
"nixpkgs=$HOME/.nix-defexpr/nixpkgs"
# "/nix/var/nix/profiles/per-user/root/channels"
];
nix.maxJobs = 8;
nix.buildCores = 4;
# FIXME: nix.useSandbox = "relaxed"; # NOTE: for testing
nix.distributedBuilds = true;
nix.buildMachines = [
# { hostName = "build-slave";
# system = "x86_64-linux";
# maxJobs = 2;
# }
{ hostName = "nix-docker";
system = "x86_64-linux";
maxJobs = 4;
sshKey = "/Users/mohacker/.ssh/docker_rsa";
}
];
# nix.requireSignedBinaryCaches = false; # HACK
nixpkgs.config.allowUnfree = true;
# nixpkgs.config.allowBroken = true; # HACK
nixpkgs.config.packageOverrides = pkgs: rec {
camlp5 = pkgs.ocamlPackages.camlp5_6_strict;
coq = pkgs.coq_8_6;
erlang = pkgs.erlangR19;
gcc = pkgs.gcc6;
jdk = pkgs.openjdk8;
mono = pkgs.mono46;
my-lilypond = pkgs.lilypond-with-fonts.override {
fonts = with pkgs.openlilylib-fonts; [ improviso lilyjazz ];
};
nodejs = pkgs.nodejs-7_x;
ocaml = pkgs.ocaml_4_03;
# TODO: postgresql = pks.postgresql96;
protobuf = pkgs.protobuf3_1;
# TODO: mysql = mysql57;
};
}