2024-02-06 10:05:14 +00:00
|
|
|
let
|
|
|
|
addPatches = pkg: patches:
|
|
|
|
pkg.overrideAttrs (old: {
|
|
|
|
patches = (old.patches or []) ++ patches;
|
|
|
|
});
|
|
|
|
in {
|
2024-02-12 05:27:05 +00:00
|
|
|
nautilus = {
|
|
|
|
typeahead = import ./nautilus/typeahead.nix {inherit addPatches;};
|
|
|
|
};
|
|
|
|
prismlauncher = {
|
|
|
|
offline-mode = import ./prismlauncher/offline-mode.nix {inherit addPatches;};
|
|
|
|
};
|
|
|
|
sway = {
|
|
|
|
input-method-popup = import ./sway/input-method-popup.nix {inherit addPatches;};
|
|
|
|
tray-dbus-menu = import ./sway/tray-dbus-menu.nix {inherit addPatches;};
|
|
|
|
};
|
2024-02-06 10:05:14 +00:00
|
|
|
}
|