-
Notifications
You must be signed in to change notification settings - Fork 1
/
home.nix
254 lines (237 loc) · 4.71 KB
/
home.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
{ pkgs
, config
, inputs
, pkgs-unstable
, ...
}:
let
development-packages = with pkgs; [
gnumake
clang-tools_18 # default clang is 18
cmake
pkg-config
flamegraph
linuxPackages.perf
hyperfine
gcc
nodejs
metals
sbt
scalafmt
nixpkgs-fmt
texlab
(texlive.combine {
inherit (texlive) scheme-full minted beamertheme-arguelles;
})
tectonic
vale
powertop
pyright
typescript
typescript-language-server
nil
(python3.withPackages (ps:
with ps; [
numpy
matplotlib
scipy
pandas
requests
grequests
setuptools
black
]))
rs-git-fsmonitor
rnote
bind
];
tools = with pkgs; [
tealdeer
fd
sd
bat
aria2
ripgrep
ranger
fzf
imagemagick
vimv
pandoc
pdftk
nix-du
nix-prefetch-git
graphviz
yt-dlp
rsync
unar
zip
xournalpp
wl-clipboard
tree
shntool
flac
nix-alien
# quickemu
# quickgui
spice-gtk
gh
inotify-tools
tikzit
zk
zotero
languagetool
inkscape
beamerpresenter
] ++ inputs.my-nvim.nvim-stuff;
desktop-apps = with pkgs; [
rime-data
firefox-bin
nvtopPackages.full
intel-gpu-tools
pinentry-qt
vlc
thunderbird
inputs.nix-gaming.packages.${pkgs.hostPlatform.system}.osu-lazer-bin
zoom-us
onlyoffice-bin
obs-studio
avidemux
anki-bin
protonup-qt
sioyek
];
in
{
nixpkgs.config.allowUnfree = true;
home.stateVersion = "22.11";
programs.home-manager = { enable = true; };
home.packages = [
] ++ development-packages ++ tools ++ desktop-apps;
xdg = {
dataFile = {
"fcitx5/rime" = {
recursive = true;
source = inputs.rime-ice;
};
"fcitx5/rime/rime_ice.custom.yaml" = {
text = ''
patch:
traditionalize/opencc_config: s2hk.json
'';
};
};
configFile = {
"neovide/config.toml" = {
text = ''
fork=true
'';
};
};
};
home.sessionVariables = {
EDITOR = "nvim";
LD_LIBRARY_PATH = "$LD_LIBRARY_PATH:/run/opengl-driver/lib";
BIBINPUTS = "$HOME/texmf/bibtex/bib"; # Zotero bib path
};
home.sessionPath = [ "$HOME/.npm-packages/bin/" "$HOME/.local/bin" ];
programs.kitty = {
enable = true;
font = {
name = "DejaVuSansMono";
size = 12;
};
settings = {
scrollback_lines = 100000;
enable_audio_bell = false;
update_check_interval = 0;
};
};
programs.htop = {
enable = true;
settings = {
show_cpu_usage = 1;
show_cpu_frequency = 1;
show_cpu_temperature = 1;
} // (with config.lib.htop; leftMeters [
(bar "LeftCPUs2")
(bar "Memory")
(bar "Swap")
(text "DiskIO")
(text "NetworkIO")
]) // (with config.lib.htop; rightMeters [
(bar "RightCPUs2")
(text "Tasks")
(text "LoadAverage")
(text "Uptime")
(text "Systemd")
]);
};
fonts.fontconfig.enable = true;
nixpkgs.overlays = [
inputs.nix-alien.overlays.default
];
programs.direnv = {
enable = true;
nix-direnv.enable = true;
enableZshIntegration = true;
};
programs.git = {
enable = true;
extraConfig = {
core = {
editor = "nvim";
autocrlf = "input";
preloadIndex = true;
fsmonitor = "rs-git-fsmonitor";
};
pull = { ff = "only"; };
push = { autoSetupRemote = true; };
submodule.fetchJobs = 8;
};
difftastic.enable = true;
lfs.enable = true;
userEmail = "[email protected]";
userName = "pca006132";
ignores = [ ".envrc" ".direnv/" ".venv" ];
};
services.easyeffects = {
enable = true;
};
services.ssh-agent.enable = true;
programs.ssh = {
enable = true;
addKeysToAgent = "yes";
};
programs.zsh = {
enable = true;
autosuggestion.enable = true;
oh-my-zsh = {
enable = true;
plugins = [ "git" "z" "vi-mode" "history-substring-search" ];
theme = "avit";
};
autocd = true;
shellAliases = {
ll = "ls -l";
v = "nvim";
r = ''
ranger --choosedir=$HOME/.rangerdir; LASTDIR=`cat $HOME/.rangerdir`; cd "$LASTDIR"'';
};
};
programs.tmux = {
enable = true;
escapeTime = 0;
extraConfig = ''
set -g mouse on
set -g default-terminal "tmux-256color"
bind | split-window -h -c "#{pane_current_path}"
bind - split-window -v -c "#{pane_current_path}"
bind t new
'';
keyMode = "vi";
plugins = [ pkgs.tmuxPlugins.vim-tmux-navigator ];
shortcut = "a";
terminal = "xterm";
};
programs.neovim = inputs.my-nvim.nvim;
}