nixos-config/modules/scroll-boost/default.nix
2020-11-09 12:15:53 -05:00

13 lines
322 B
Nix

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