Mark synaptics as deprecated

Changed files
+9 -1
nixos
doc
manual
release-notes
modules
services
x11
hardware
+8
nixos/doc/manual/release-notes/rl-1709.xml
···
removed. The system support had been broken for several years.
</para>
</listitem>
+
<listitem>
+
<para>
+
Touchpad support should now be enabled through
+
<literal>libinput</literal> as <literal>synaptics</literal> is
+
now deprecated. See the option
+
<literal>services.xserver.libinput.enable</literal>.
+
</para>
+
</listitem>
</itemizedlist>
<para>Other notable improvements:</para>
+1 -1
nixos/modules/services/x11/hardware/synaptics.nix
···
enable = mkOption {
type = types.bool;
default = false;
-
description = "Whether to enable touchpad support.";
+
description = "Whether to enable touchpad support. Deprecated: Consider services.xserver.libinput.enable.";
};
dev = mkOption {