2024-02-06 10:05:14 +00:00
|
|
|
let
|
|
|
|
addPatches = pkg: patches:
|
|
|
|
pkg.overrideAttrs (old: {
|
|
|
|
patches = (old.patches or []) ++ patches;
|
|
|
|
});
|
|
|
|
in {
|
2024-02-24 18:39:46 +00:00
|
|
|
nautilus = import ./nautilus.nix {inherit addPatches;};
|
|
|
|
prismlauncher = import ./prismlauncher.nix {inherit addPatches;};
|
2024-03-26 08:09:37 +00:00
|
|
|
sway = import ./sway.nix {inherit addPatches;};
|
2024-02-06 10:05:14 +00:00
|
|
|
}
|