flakes/overlays/eww.nix

7 lines
238 B
Nix
Raw Normal View History

2022-03-22 23:50:53 +07:00
self: super: {
eww = super.eww.overrideAttrs (old: rec {
2022-03-25 19:53:07 +07:00
# Use normal scroll events instead of smooth scroll ( due to https://bugzilla.gnome.org/show_bug.cgi?id=675959 )
patches = old.patches ++ [ ./patches/eww.patch ];
2022-03-22 23:50:53 +07:00
});
}