nixos-config/modules/scroll-boost/default.nix
2020-12-28 23:05:45 -05:00

13 lines
308 B
Nix

{ ... }:
{
nixpkgs.overlays = [
(self: super: {
xorg = super.xorg.overrideScope' (selfB: superB: {
inherit (super.xorg) xlibsWrapper;
xf86inputlibinput = superB.xf86inputlibinput.overrideAttrs (attr: {
patches = [ ./libinput.patch ];
});
});
})
];
}