mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
gnome: patch mutter by default
This commit is contained in:
parent
10d3cb618e
commit
b2ee9df4b7
1 changed files with 5 additions and 1 deletions
|
@ -3,7 +3,11 @@ let
|
||||||
cfg = config.sconfig.fix-gnome-mouse-lag;
|
cfg = config.sconfig.fix-gnome-mouse-lag;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.sconfig.fix-gnome-mouse-lag = lib.mkEnableOption "Reduce mouse latency on wayland";
|
options.sconfig.fix-gnome-mouse-lag = lib.mkOption {
|
||||||
|
default = true;
|
||||||
|
type = lib.types.bool;
|
||||||
|
description = "Reduce mouse latency on wayland";
|
||||||
|
};
|
||||||
|
|
||||||
config = lib.mkIf cfg {
|
config = lib.mkIf cfg {
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
|
|
Loading…
Reference in a new issue