-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlib.nix
More file actions
378 lines (350 loc) · 9.04 KB
/
Copy pathlib.nix
File metadata and controls
378 lines (350 loc) · 9.04 KB
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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
{ lib, pkgs, ... }:
with lib;
let
displayType = types.submodule {
options = {
res = mkOption {
type = types.str;
default = "preferred";
};
hz = mkOption {
type = types.nullOr types.int;
default = null;
};
position = {
x = mkOption {
type = types.int;
default = 0;
};
y = mkOption {
type = types.int;
default = 0;
};
};
scale = mkOption {
type = types.float;
default = 1.0;
};
workspace = mkOption {
type = types.nullOr (types.either types.int types.str);
default = null;
};
primary = mkOption {
type = types.bool;
default = false;
description = "Mark this display as the primary monitor (mouse spawns here)";
};
};
};
specialWorkspaceType = types.submodule {
options = {
keybind = mkOption {
type = types.listOf types.str;
default = [ ];
};
rule = mkOption {
type = types.attrsOf (types.listOf types.str);
default = { };
};
autostart = mkOption {
type = types.bool;
default = false;
};
startCommand = mkOption {
type = types.str;
default = "";
};
};
};
keybindType = types.submodule {
options = {
exec = mkOption { type = types.str; };
bind = mkOption {
type = types.listOf types.str;
default = [ ];
};
type = mkOption {
type = types.str;
default = "bindsym";
description = "Bind command type (only used by sway/scroll)";
};
raw = mkOption {
type = types.bool;
default = false;
description = "Emit exec verbatim: raw Lua for hyprland, raw sway command for sway/scroll (skips exec_cmd / exec wrapping)";
};
};
};
in
{
options.minima = {
enable = mkEnableOption "Minima shell";
hyprland = {
enable = mkOption {
type = types.bool;
default = true;
description = "Enable Hyprland as the window manager. Automatically disabled when sway or scroll is enabled, unless set explicitly.";
};
modifier = mkOption {
type = types.str;
default = "SUPER";
description = "Hyprland modifier key";
};
layout = mkOption {
type = types.enum [ "dwindle" "master" "scrolling" "hy3" ];
default = "dwindle";
description = "Hyprland layout";
};
extraLua = mkOption {
type = types.lines;
default = "";
description = "Extra Lua appended to the generated Hyprland config";
};
plugins = mkOption {
type = types.listOf (types.either types.package (types.strMatching "/.*"));
default = [ ];
description = "Hyprland plugins (packages or absolute paths)";
};
};
sway = {
enable = mkOption {
type = types.bool;
default = false;
description = "Enable Sway as the window manager";
};
modifier = mkOption {
type = types.str;
default = "Mod4";
description = "Sway modifier key";
};
fx = mkOption {
type = types.bool;
default = false;
description = "Use swayfx (blur, shadows)";
};
extraConfig = mkOption {
type = types.lines;
default = "";
description = "Extra sway config appended to the generated config";
};
};
scroll = {
enable = mkOption {
type = types.bool;
default = false;
description = "Enable Scroll as the window manager";
};
modifier = mkOption {
type = types.str;
default = "Mod4";
description = "Scroll modifier key";
};
extraConfig = mkOption {
type = types.lines;
default = "";
description = "Extra scroll config appended to the generated config";
};
};
osModule = mkOption {
type = types.bool;
default = false;
internal = true;
};
minimaConfigFile = mkOption {
type = types.nullOr types.package;
default = null;
internal = true;
};
swayConfigFile = mkOption {
type = types.nullOr types.package;
default = null;
internal = true;
};
scrollConfigFile = mkOption {
type = types.nullOr types.package;
default = null;
internal = true;
};
quickshellStoreDir = mkOption {
type = types.nullOr types.package;
default = null;
internal = true;
};
hyprlandLua = mkOption {
type = types.nullOr types.str;
default = null;
internal = true;
};
enableNvidia = mkOption {
type = types.bool;
default = false;
internal = true;
};
keybinds = mkOption {
type = types.listOf keybindType;
default = [ ];
description = "Global keybindings. List of bindings that execute programs/commands.";
};
kitty = {
enable = mkOption {
type = types.bool;
default = true;
description = "Enable kitty terminal config";
};
};
displays = mkOption {
type = types.attrsOf displayType;
default = { };
internal = true;
};
autostart = mkOption {
type = types.listOf types.str;
default = [ ];
};
specialWorkspaces = mkOption {
type = types.attrsOf specialWorkspaceType;
default = { };
};
theming.enable = mkOption {
type = types.bool;
default = true;
description = "Enable hardcoded Minima styling (Breeze/Papirus/Rose-Pine)";
};
shell.enable = mkOption {
type = types.bool;
default = true;
description = "Enable zsh, fzf, starship, etc.";
};
extraPackages = mkOption {
type = types.listOf types.package;
default = [ ];
};
desktop = {
enable = mkOption {
type = types.bool;
default = true;
description = "Enable desktop integration (Dolphin, XDG portals, KDE packages)";
};
xdgPortal = mkOption {
type = types.bool;
default = true;
description = "Enable XDG desktop portals (kde + gtk)";
};
};
tex = {
enable = mkOption {
type = types.bool;
default = false;
description = "Enable texlive";
};
scheme = mkOption {
type = types.nullOr types.str;
default = null;
description = "Texlive scheme name, e.g. \"scheme-full\"";
};
packages = mkOption {
type = types.nullOr (types.attrsOf types.anything);
default = null;
description = "Extra texlive packages as an attrset";
};
spell = mkOption {
type = types.listOf types.str;
default = [ ];
description = "List of language codes for neovim spellfiles";
};
};
minimaConfig = {
darkTheme = mkOption {
type = types.bool;
default = true;
};
panel = {
enable = mkOption {
type = types.bool;
default = true;
};
alwaysVisible = mkOption {
type = types.bool;
default = true;
};
};
launcher = {
enable = mkOption {
type = types.bool;
default = true;
};
qalcPath = mkOption {
type = types.str;
default = "${pkgs.libqalculate}/bin/qalc";
};
};
clipboard.enable = mkOption {
type = types.bool;
default = true;
};
wallpaper = {
enable = mkOption {
type = types.bool;
default = true;
};
engineEnabled = mkOption {
description = "Enable wallpaper engine support";
type = types.bool;
default = false;
};
workshopPath = mkOption {
type = types.str;
default = "~/.steam/steam/steamapps/workshop/content/431960/";
};
fps = mkOption {
type = types.int;
default = 25;
};
fill = mkOption {
type = types.bool;
default = true;
};
matureContent = mkOption {
type = types.bool;
default = false;
};
volume = mkOption {
type = types.int;
default = 50;
};
};
};
matugenConfigFile = mkOption {
type = types.nullOr types.package;
default = null;
internal = true;
};
matugenTemplateFile = mkOption {
type = types.nullOr types.package;
default = null;
internal = true;
};
matugen = {
sourceColor = mkOption {
type = types.str;
default = "#6750A4";
description = "Seed color for matugen";
};
scheme = mkOption {
type = types.str;
default = "content";
description = "Matugen color scheme type";
};
mode = mkOption {
type = types.str;
default = "color";
description = "Matugen mode (color/image)";
};
package = mkOption {
type = types.package;
default = pkgs.matugen;
description = "Matugen package";
};
};
};
}