gnome: remove abandoned input patch

This commit is contained in:
Sean Buckley 2021-05-10 09:12:53 -04:00
parent 68a74d0a26
commit 5e0628a3b4
2 changed files with 0 additions and 32 deletions

View file

@ -5,7 +5,6 @@
./modules/backports.nix ./modules/backports.nix
./modules/baseline.nix ./modules/baseline.nix
./modules/cli.nix ./modules/cli.nix
./modules/fix-gnome-mouse-lag.nix
./modules/flakes.nix ./modules/flakes.nix
./modules/gnome.nix ./modules/gnome.nix
./modules/phpipam.nix ./modules/phpipam.nix

View file

@ -1,31 +0,0 @@
{ config, pkgs, lib, ... }:
let
cfg = config.sconfig.fix-gnome-mouse-lag;
in
{
options.sconfig.fix-gnome-mouse-lag = lib.mkOption {
default = true;
type = lib.types.bool;
description = "Reduce mouse latency on wayland";
};
config = lib.mkIf cfg {
nixpkgs.overlays = [
(self: super: {
gnome3 = super.gnome3 // {
gnome-shell = super.gnome3.gnome-shell.override {
mutter = super.gnome3.mutter.overrideAttrs (old: {
patches = old.patches ++ [
(pkgs.fetchurl {
url = "https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/168.patch";
sha256 = "f9e71b14c791ac7553ff4ed2d0d5b612fc886c5aa771587965a6ffd99cb98b86";
})
];
});
};
};
})
];
};
}