flakes/overlays/eww.nix

9 lines
250 B
Nix
Raw Permalink Normal View History

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