fix hyprland incorrect bindings

This commit is contained in:
kenji
2025-12-23 22:58:54 +00:00
parent e4e90059e3
commit c4639d88c5
5 changed files with 152 additions and 11 deletions
+4 -5
View File
@@ -1,7 +1,6 @@
{
wayland.windowManager.hyprland.settings = {
imports = [
./hypr/binds.nix
];
};
imports = [
./hypr/binds.nix
];
wayland.windowManager.hyprland.enable = true;
}
+11 -4
View File
@@ -1,6 +1,13 @@
{
bindd = [
"SUPER, Return, Open Terminal, exec, ghostty"
"SUPER, Q, Kill active, killactive"
];
wayland.windowManager.hyprland.settings = {
bindd = [
"SUPER, Return, Open Terminal, exec, ghostty"
"SUPER, Q, Kill active, killactive"
"SUPER, J, Move focus down, movefocus, d"
"SUPER, K, Move focus up, movefocus, u"
"SUPER, H, Move focus left, movefocus, l"
"SUPER, L, Move focus right, movefocus, r"
];
};
}