nixos-config/modules/scroll-boost/default.nix

14 lines
308 B
Nix
Raw Normal View History

2020-12-29 04:05:45 +00:00
{ ... }:
2020-09-18 13:54:09 +00:00
{
2020-09-24 05:45:48 +00:00
nixpkgs.overlays = [
(self: super: {
xorg = super.xorg.overrideScope' (selfB: superB: {
inherit (super.xorg) xlibsWrapper;
xf86inputlibinput = superB.xf86inputlibinput.overrideAttrs (attr: {
2020-11-09 16:50:42 +00:00
patches = [ ./libinput.patch ];
2020-09-18 13:54:09 +00:00
});
2020-09-24 05:45:48 +00:00
});
})
];
2020-09-18 13:54:09 +00:00
}