-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmacbook-pro-18-3-config.nix
239 lines (200 loc) · 4.82 KB
/
macbook-pro-18-3-config.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
{ nixpkgs-stable, nixpkgs-pinned-unstable, pkgs-stable, pkgs-pinned-unstable, ... }:
let
myNeovim = pkgs-pinned-unstable.neovim.override {
withPython3 = true;
withNodeJs = true;
withRuby = true;
vimAlias = true;
viAlias = true;
configure = (import ./nix-nvim/nvim.nix { pkgs = pkgs-pinned-unstable; nixpkgs = nixpkgs-pinned-unstable; });
};
in
{
imports = [];
system.stateVersion = 4;
nix = {
package = pkgs-stable.nixVersions.latest;
extraOptions = ''
experimental-features = nix-command flakes
keep-outputs = true
keep-derivations = true
keep-failed = false
keep-going = true
auto-optimise-store = false
'';
gc = {
automatic = true;
options = "--delete-older-than 600d";
};
optimise = {
automatic = true;
};
};
nixpkgs = {
# The configuration of the Nix Packages collection. (For details, see the Nixpkgs documentation.)
# This allows you to set package configuration options, and to override packages globally through the packageOverrides option.
config = {
allowUnfree = true;
};
# List of overlays to use with the Nix Packages collection.
# This overrides packages globally.
overlays = [];
};
networking = {
knownNetworkServices = [ "Wi-Fi" "Thunderbolt Bridge" ];
dns = [
"1.1.1.1"
"1.0.0.1"
"2606:4700:4700::1111"
"2606:4700:4700::1001"
];
};
environment = {
darwinConfig = "\$HOME/code/nixos-dotfiles/macbook-pro-18-3-config.nix";
variables = {
EDITOR = "nvim";
GIT_EDITOR = "nvim";
TERMINAL = "kitty";
};
shells = [ pkgs-stable.fish ];
systemPackages =
(with pkgs-stable; [
coreutils-full
findutils
gnused
lsd
bat
openssl
tcpdump
ntfs3g
tree
eza
broot
stow
gnumake
cmake
killall
ghostscript
git
git-lfs
delta
difftastic
jujutsu
lazyjj
curl
wget
rsync
restic
rclone
htop
bats
fish
tree-sitter
ctags
efm-langserver
(lua5_1.withPackages (pks: with pks; [
luarocks
]))
stylua
hstr
zoxide
fzf
fd
ripgrep
ripgrep-all
ugrep
jq
gcc
go
gopls
gotools
protoc-gen-go
cobra-cli
cargo
zola
nodejs
yarn
nodePackages.prettier
uv
(python312.withPackages (pks: with pks; [
black
isort
mypy
pip
pipx
pyflakes
pylint
pynvim
]))
poetry
inkscape
imagemagick
pngcrush
plantuml
ffmpeg
vorbis-tools
scrcpy
texliveSmall
pandoc
qpdf
(ruby.withPackages (pks: with pks; [
nokogiri
pry
neovim
]))
])
++
(with pkgs-pinned-unstable; [
deno
myNeovim
gleam
beam.packages.erlang_27.erlang
beam.packages.erlang_27.rebar3
]);
};
programs = {
fish = {
enable = true;
};
};
services = {
nix-daemon = {
enable = true;
logFile = "/var/log/nix-daemon.log";
};
};
system = {
defaults = {
NSGlobalDomain = {
"com.apple.mouse.tapBehavior" = 1;
"com.apple.sound.beep.feedback" = 0;
"com.apple.sound.beep.volume" = 0.000;
AppleFontSmoothing = 1;
AppleInterfaceStyle = "Dark";
AppleMeasurementUnits = "Centimeters";
AppleMetricUnits = 1;
ApplePressAndHoldEnabled = false;
AppleShowAllExtensions = true;
AppleShowAllFiles = true;
AppleShowScrollBars = "Automatic";
AppleTemperatureUnit = "Celsius";
# You can use https://mac-key-repeat.zaymon.dev to preview these settings without a restart
InitialKeyRepeat = 8;
KeyRepeat = 2;
};
finder = {
AppleShowAllExtensions = true;
AppleShowAllFiles = true;
FXEnableExtensionChangeWarning = true;
_FXShowPosixPathInTitle = true;
};
};
activationScripts.postUserActivation.text = ''
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true
defaults write com.apple.finder WarnOnEmptyTrash -bool false
defaults write com.apple.screensaver askForPassword -int 1
defaults write com.apple.screensaver askForPasswordDelay -int 0
defaults write com.apple.LaunchServices/com.apple.launchservices.secure LSHandlers -array-add '{LSHandlerContentType=public.plain-text;LSHandlerRoleAll=com.neovide.neovide;}'
'';
};
}