-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.nix
215 lines (188 loc) · 4.41 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
{ system ? builtins.currentSystem, config, pkgs, lib, unstable-pkgs, ... }:
{
imports = [ ./i3.nix ./neovim.nix ./zsh.nix ./scriptBins.nix ];
nixpkgs.config.allowUnfreePredicate = (pkg: true);
# Home Manager needs a bit of information about you and the
# paths it should manage.
home.username = "taylorl";
home.homeDirectory = "/home/taylorl";
# This value determines the Home Manager release that your
# configuration is compatible with. This helps avoid breakage
# when a new Home Manager release introduces backwards
# incompatible changes.
#
# You can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
home.stateVersion = "24.05";
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
home.sessionVariables = {
EDITOR = "nvim";
BROWSER = "vivaldi";
TERMINAL = "alacritty";
};
home.packages = with pkgs; [
# System
git
curl
htop
i3
gcc
gnumake
perl
openvpn
fzf
keychain
xclip
libuuid
rename
fd
ripgrep
bat
inotify-tools
unixtools.ifconfig
glibc
libuuid
tree
xautolock
meslo-lgs-nf
lsof
pstree
sysstat
rinetd
gnuplot
# Dev
nodejs_22
nodePackages."@microsoft/rush"
nodePackages."http-server"
nodePackages.pnpm
shellcheck
nix-prefetch-git
git-machete
git-absorb
python310
pdal
python310Packages.pip
wasm-pack
rustup
jq
amazon-ecr-credential-helper
gh
awscli2
yarn
delta
fx
axel
sysbench
direnv
nixfmt-classic
zsh-powerlevel10k
nixd
(callPackage ./cursor.nix {})
(callPackage ./kart.nix {})
# Apps
slack
vivaldi
qgis
firefox
google-chrome
qdirstat
] ++ [
unstable-pkgs.playwright-test
];
fonts.fontconfig = { enable = true; };
xdg = {
enable = true;
mime.enable = true;
mimeApps = {
enable = true;
defaultApplications = {
"default-web-browser" = [ "vivaldi-stable.desktop" ];
"x-www-browser" = [ "vivaldi-stable.desktop" ];
"x-scheme-handler/https" = [ "vivaldi-stable.desktop" ];
"x-scheme-handler/http" = [ "vivaldi-stable.desktop" ];
"x-scheme-handler/koordinates" = [ "koordinates-dev-protocol.desktop" ];
};
};
desktopEntries = {
koordinates-dev-protocol = {
type = "Application";
name = "Koordinates dev protocol handler";
exec = "koordinates-dev-protocol %u";
mimeType = [ "x-scheme-handler/koordinates" ];
};
};
};
programs.git = {
enable = true;
userName = "Taylor Lodge";
userEmail = "[email protected]";
extraConfig = {
pull.rebase = "true";
merge.conflictstyle = "zdiff3";
rebase.autosquash = "true";
rerere.enabled = "true";
core.pager = "delta";
diff.algorithm = "histogram";
init.defaultBranch = "main";
gpg = {
format = "ssh";
};
"gpg \"ssh\"" = {
program = "${lib.getExe' pkgs._1password-gui "op-ssh-sign"}";
};
commit = {
gpgsign = true;
};
user = {
signingKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIwOTjGNXctN6zgV6LazHoOcsd+cT2qFy+H8UOOWm7rm";
};
};
};
programs.fzf = {
enable = true;
enableZshIntegration = true;
defaultCommand = "fd";
tmux.enableShellIntegration = true;
};
programs.tmux = {
enable = true;
clock24 = true;
mouse = true;
newSession = true;
prefix = "C-Space";
terminal = "screen-256color";
keyMode = "vi";
shell = "${pkgs.zsh}/bin/zsh";
plugins = with pkgs.tmuxPlugins; [ yank resurrect ];
extraConfig = ''
bind h split-window -v -c "#{pane_current_path}"
bind v split-window -h -c "#{pane_current_path}"
'';
};
programs.vscode = {
enable = true;
package = unstable-pkgs.vscode-fhs;
};
programs.bash = { enable = true; };
programs.direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
programs.alacritty = {
enable = true;
settings = {
colors.primary.background = "#1F1626";
font.normal.family = "MesloLGS NF";
};
};
programs.ssh = {
enable = true;
extraConfig = ''
Host *
IdentityAgent ~/.1password/agent.sock
'';
};
}