2024-02-06 10:05:14 +00:00
|
|
|
let
|
|
|
|
addPatches = pkg: patches:
|
|
|
|
pkg.overrideAttrs (old: {
|
|
|
|
patches = (old.patches or []) ++ patches;
|
|
|
|
});
|
|
|
|
in {
|
2024-05-01 00:18:54 +00:00
|
|
|
patches = _final: prev:
|
|
|
|
{}
|
|
|
|
// import ./nautilus.nix {inherit addPatches prev;}
|
|
|
|
// import ./prismlauncher.nix {inherit addPatches prev;}
|
|
|
|
// import ./sway.nix {inherit addPatches prev;}
|
|
|
|
// import ./tailscale.nix {inherit addPatches prev;};
|
2024-02-06 10:05:14 +00:00
|
|
|
}
|