fix(nvidia): use override to get latest egl-wayland
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
265a10660e
commit
9724f5f10e
3 changed files with 15 additions and 1 deletions
BIN
flake.lock
BIN
flake.lock
Binary file not shown.
|
@ -13,6 +13,20 @@ inputs: rec {
|
||||||
])
|
])
|
||||||
++ [
|
++ [
|
||||||
inputs.self.overlays.xdg-desktop-portal-kde
|
inputs.self.overlays.xdg-desktop-portal-kde
|
||||||
|
|
||||||
|
# FIXME: https://pr-tracker.nelim.org/?pr=333586
|
||||||
|
(final: prev: {
|
||||||
|
egl-wayland = prev.egl-wayland.overrideAttrs (o: rec {
|
||||||
|
version = "1.1.15";
|
||||||
|
|
||||||
|
src = prev.fetchFromGitHub {
|
||||||
|
owner = "Nvidia";
|
||||||
|
repo = o.pname;
|
||||||
|
rev = version;
|
||||||
|
hash = "sha256-MD+D/dRem3ONWGPoZ77j2UKcOCUuQ0nrahEQkNVEUnI=";
|
||||||
|
};
|
||||||
|
});
|
||||||
|
})
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -52,7 +52,7 @@ in {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
extraPortals = with pkgs; [
|
extraPortals = with pkgs; [
|
||||||
xdg-desktop-portal-kde
|
kdePackages.xdg-desktop-portal-kde
|
||||||
];
|
];
|
||||||
|
|
||||||
config.hyprland = {
|
config.hyprland = {
|
||||||
|
|
Loading…
Reference in a new issue