nix-config/overlays/hyprland.nix
Donovan Glover 550c0579f5
overlays: Patch hyprland to fix touch keyboards
Fixes both Squeekboard and wvkbd, however the former still has more
issues.
2024-07-14 14:23:11 -04:00

8 lines
179 B
Nix

final: prev: {
hyprland = prev.hyprland.overrideAttrs (oldAttrs: {
patches = (oldAttrs.patches or [ ]) ++ [
../assets/hyprland-fix-keyboard-focus.patch
];
});
}