Guanran Wang
66d7539eab
https://github.com/swaywm/sway/pull/7226 is merged https://github.com/swaywm/sway/pull/6249 looks dead :( also simplified ./overlays
10 lines
276 B
Nix
10 lines
276 B
Nix
let
|
|
addPatches = pkg: patches:
|
|
pkg.overrideAttrs (old: {
|
|
patches = (old.patches or []) ++ patches;
|
|
});
|
|
in {
|
|
nautilus = import ./nautilus.nix {inherit addPatches;};
|
|
prismlauncher = import ./prismlauncher.nix {inherit addPatches;};
|
|
sway = import ./sway;
|
|
}
|