me like nix
0

Configure Feed

Select the types of activity you want to include in your feed.

update niri config

author
Sean Aye
date (Aug 23, 2025, 12:32 PM -0400) commit 945f1fb2 parent afef4f0d change-id lvtqtzmk
+30 -6
+30 -6
home.nix
··· 13 13 programs.niri = { 14 14 enable = true; 15 15 settings = { 16 + window-rules = [ 17 + { 18 + geometry-corner-radius = { 19 + top-left = 12.0; 20 + top-right = 12.0; 21 + bottom-left = 12.0; 22 + bottom-right = 12.0; 23 + }; 24 + clip-to-geometry = true; 25 + } 26 + ]; 16 27 layout = { 17 28 struts = { 18 29 top = 0; ··· 43 54 }; 44 55 "Mod+l".action = { 45 56 focus-column-right = { }; 57 + }; 58 + "Mod+Shift+h".action = { 59 + move-column-left = { }; 60 + }; 61 + "Mod+Shift+j".action = { 62 + move-window-down-or-to-workspace-down = { }; 63 + }; 64 + "Mod+Shift+k".action = { 65 + move-window-up-or-to-workspace-up = { }; 66 + }; 67 + "Mod+Shift+l".action = { 68 + move-column-right = { }; 46 69 }; 47 70 "Mod+p".action = { 48 71 show-hotkey-overlay = { }; ··· 351 374 }; 352 375 }; 353 376 377 + dconf.settings = { 378 + "org/gnome/desktop/interface" = { 379 + color-scheme = "prefer-dark"; 380 + enable-hot-corners = false; 381 + }; 382 + }; 383 + 354 384 # Session variables 355 385 home.sessionVariables = { 356 386 EDITOR = "hx"; 357 387 VISUAL = "hx"; 358 388 SUDO_EDITOR = "hx"; 359 - # NIXOS_OZONE_WL = "1"; 360 - # QT_QPA_PLATFORM = "wayland;xcb"; 361 - # QT_WAYLAND_DISABLE_WINDOWDECORATION = "1"; 362 - # SDL_VIDEODRIVER = "wayland"; 363 - # XDG_CURRENT_DESKTOP = "niri"; 364 - # XDG_SESSION_TYPE = "wayland"; 365 389 SSH_AUTH_SOCK = "~/.1password/agent.sock"; 366 390 }; 367 391