sync repo

This commit is contained in:
notkaori
2025-08-20 09:38:25 -06:00
parent 51f2ce340f
commit 1f3b39008e
17 changed files with 916 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
river
];
wayland.windowManager.river = {
enable = true;
settings = {
default-layout = "wideriver";
map = {
normal = {
"Super Return" = "spawn alacritty";
"Alt Q" = "close";
"Super J" = "focus-view next";
"Super K" = "focus-view previous";
"Super+Shift J" = "swap next";
"Super+Shift K" = "swap previous";
};
};
extraConfig = "
``
wideriver -view-padding 6 -outer-padding 6 &
``
";
};
};
}