Refactor plasma role #12

Merged
Toast merged 4 commits from plasma-refactor into main 2024-11-12 09:43:02 +01:00
2 changed files with 15 additions and 5 deletions
Showing only changes of commit 6cc541528c - Show all commits

View file

@ -54,11 +54,6 @@ in {
../kde/patches/kwin-pr6406.patch
];
};
konsole = kPrev.konsole.overrideAttrs {
patches = [
../kde/patches/konsole-pr767.patch
];
};
}
);
}

View file

@ -24,4 +24,19 @@ in {
};
};
};
nixpkgs.overlays = [
(
final: prev: {
kdePackages = prev.kdePackages.overrideScope (
kFinal: kPrev: {
konsole = kPrev.konsole.overrideAttrs {
patches = [
../kde/patches/konsole-pr767.patch
];
};
}
);
}
)
];
}