-
Notifications
You must be signed in to change notification settings - Fork 0
/
macbook-pro-18-3-config.nix
201 lines (167 loc) · 3.85 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
{ config, pkgs, nixpkgs, ... }:
let
myNeovim = pkgs.neovim.override {
withPython3 = true;
withNodeJs = true;
withRuby = true;
vimAlias = true;
viAlias = true;
configure = (import ./nix-nvim/nvim.nix { pkgs = pkgs; nixpkgs = nixpkgs; });
};
in
{
imports = [];
system.stateVersion = 4;
nix = {
package = pkgs.nixFlakes;
extraOptions = ''
experimental-features = nix-command flakes
keep-outputs = true
keep-derivations = true
auto-optimise-store = true
'';
gc = {
automatic = true;
options = "--delete-older-than 600d";
};
};
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.fish ];
systemPackages = with pkgs; [
coreutils-full
findutils
gnused
lsd
bat
openssl
tcpdump
ntfs3g
stow
gnumake
cmake
killall
ghostscript
git
git-lfs
delta
curl
wget
rsync
restic
rclone
htop
tree
fish
myNeovim
nodePackages.neovim
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
cargo
zola
nodejs
yarn
nodePackages.prettier
deno
(python310.withPackages (pks: with pks; [
black
isort
mypy
pip
pipx
pyflakes
pylint
pynvim
]))
poetry
inkscape
imagemagick
pngcrush
plantuml
ffmpeg
vorbis-tools
scrcpy
];
};
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
'';
};
}