mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
13 lines
308 B
Nix
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 ];
|
|
});
|
|
});
|
|
})
|
|
];
|
|
}
|