Kde: add libplasma patch

This commit is contained in:
Toast 2024-11-06 18:14:06 +01:00
parent b20c1b53d1
commit c666b582f6
2 changed files with 64 additions and 0 deletions

View file

@ -39,6 +39,22 @@ in {
qt.enable = true;
nixpkgs.overlays = [
(
final: prev: {
kdePackages = prev.kdePackages.overrideScope (
kFinal: kPrev: {
libplasma = kPrev.libplasma.overrideAttrs {
patches = [
../kde/patches/libplasma-pr1214.patch
];
};
}
);
}
)
];
# GTK apps need dconf to grab the correct theme on Wayland
programs.dconf.enable = true;