[NixOS] [General] Provide option to build patched wlroots with hardware cursor support for NVIDIA and VmWare #5334
VeilSilence
started this conversation in
Ideas
Replies: 2 comments 5 replies
-
Something like that, you can do this instead: {pkgs, inputs, ...}:
# ...
inputs.hyprland.packages.${pkgs.system}.hyprland.override {
wlroots = inputs.hyprland.packages.${pkgs.system}.wlroots-hyprland.overrideAttrs (self: super: {
patches = (super.patches or []) ++ [
(pkgs.fetchPatch {
url = "https://gitlab.freedesktop.org/wlroots/wlroots/-/merge_requests/4596.patch";
hash = "";
})
];
};
}; Make sure to replace the |
Beta Was this translation helpful? Give feedback.
1 reply
-
@fufexan since there's no |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Greetings.
As the title says, currently Nvidia/VmWare users don't have hardware cursor support.
However, it's about to change ( soon? ) I think: https://gitlab.freedesktop.org/wlroots/wlroots/-/merge_requests/4596
It's unclear when it's going to be merged upstream, but people report that it fixes cursor for them already.
As new NixOS user, i'm not quiet sure how to test them atm. My guess is should be something like that?
nix/wlroots.nix
Beta Was this translation helpful? Give feedback.
All reactions