alpha
Login
or
Join now
seanaye.bsky.social
/
nixos-config
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
me like nix
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
update niri config
author
Sean Aye
date
10 months ago
(Aug 23, 2025, 12:32 PM -0400)
commit
945f1fb2
945f1fb2cf5dcb5df6dd0578a85467efc35c489a
parent
afef4f0d
afef4f0dd2805a72616c7dbbd9d5ae371e126139
change-id
lvtqtzmk
lvtqtzmkkwzrztxzmxzvlsvmxvvyruyo
+30
-6
1 changed file
Expand all
Collapse all
Unified
Split
home.nix
+30
-6
home.nix
Reviewed
···
13
13
programs.niri = {
14
14
enable = true;
15
15
settings = {
16
16
+
window-rules = [
17
17
+
{
18
18
+
geometry-corner-radius = {
19
19
+
top-left = 12.0;
20
20
+
top-right = 12.0;
21
21
+
bottom-left = 12.0;
22
22
+
bottom-right = 12.0;
23
23
+
};
24
24
+
clip-to-geometry = true;
25
25
+
}
26
26
+
];
16
27
layout = {
17
28
struts = {
18
29
top = 0;
···
43
54
};
44
55
"Mod+l".action = {
45
56
focus-column-right = { };
57
57
+
};
58
58
+
"Mod+Shift+h".action = {
59
59
+
move-column-left = { };
60
60
+
};
61
61
+
"Mod+Shift+j".action = {
62
62
+
move-window-down-or-to-workspace-down = { };
63
63
+
};
64
64
+
"Mod+Shift+k".action = {
65
65
+
move-window-up-or-to-workspace-up = { };
66
66
+
};
67
67
+
"Mod+Shift+l".action = {
68
68
+
move-column-right = { };
46
69
};
47
70
"Mod+p".action = {
48
71
show-hotkey-overlay = { };
···
351
374
};
352
375
};
353
376
377
377
+
dconf.settings = {
378
378
+
"org/gnome/desktop/interface" = {
379
379
+
color-scheme = "prefer-dark";
380
380
+
enable-hot-corners = false;
381
381
+
};
382
382
+
};
383
383
+
354
384
# Session variables
355
385
home.sessionVariables = {
356
386
EDITOR = "hx";
357
387
VISUAL = "hx";
358
388
SUDO_EDITOR = "hx";
359
359
-
# NIXOS_OZONE_WL = "1";
360
360
-
# QT_QPA_PLATFORM = "wayland;xcb";
361
361
-
# QT_WAYLAND_DISABLE_WINDOWDECORATION = "1";
362
362
-
# SDL_VIDEODRIVER = "wayland";
363
363
-
# XDG_CURRENT_DESKTOP = "niri";
364
364
-
# XDG_SESSION_TYPE = "wayland";
365
389
SSH_AUTH_SOCK = "~/.1password/agent.sock";
366
390
};
367
391