Compare commits

...

2 commits

3 changed files with 2041 additions and 0 deletions

View file

@ -16,4 +16,9 @@
krfb # Use by kdeconnect for virtualmonitorplugin "krfb-virtualmonitor"
discover
];
# Uncomment when kwin is available in nixpkgs and NVIDIA 555
# nixpkgs.overlays = [
# (import ../overlays/kwin)
# ];
}

2027
overlays/kwin/5511.patch Normal file

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,9 @@
self: super: {
kdePackages = super.kdePackages.overrideScope (kde-self: kde-super: rec {
kwin = kde-super.kwin.overrideAttrs (oldAttrs: rec {
patches = oldAttrs.patches ++ [
./5511.patch # https://invent.kde.org/plasma/kwin/-/merge_requests/5511
];
});
});
}