flakes/overlays/eww.nix

9 lines
285 B
Nix
Raw Normal View History

2022-03-22 23:50:53 +07:00
self: super: {
2024-01-16 01:08:18 +07:00
eww = (super.eww.override { withWayland = true; }).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
});
}