mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
17 lines
522 B
Nix
17 lines
522 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
services.xserver.displayManager.sessionCommands = ''
|
|
xinput list | cut -d= -f2 | cut -f1 | xargs -i xinput set-prop {} 'libinput Scroll Distance Scale' 2 1
|
|
'';
|
|
|
|
nixpkgs.overlays = [
|
|
(self: super: {
|
|
xorg = super.xorg.overrideScope' (selfB: superB: {
|
|
inherit (super.xorg) xlibsWrapper;
|
|
xf86inputlibinput = superB.xf86inputlibinput.overrideAttrs (attr: {
|
|
patches = [ ./b7b5c5ef5f34802fc5f57e68493afaea5db7cdb4.diff ];
|
|
});
|
|
});
|
|
})
|
|
];
|
|
}
|