···5151 gitlab-run and gitlab-rake scripts because gitlab-runner is a component of Gitlab CI.</para>
5252 </listitem>
53535454+ <listitem>
5555+ <para><literal>services.xserver.libinput.accelProfile</literal> default
5656+ changed from <literal>flat</literal> to <literal>adaptive</literal>,
5757+ as per <link xlink:href="https://wayland.freedesktop.org/libinput/doc/latest/group__config.html#gad63796972347f318b180e322e35cee79">
5858+ official documentation</link>.</para>
5959+ </listitem>
6060+5461</itemizedlist>
55625663
+13-8
nixos/modules/services/x11/hardware/libinput.nix
···25252626 accelProfile = mkOption {
2727 type = types.enum [ "flat" "adaptive" ];
2828- default = "flat";
2929- example = "adaptive";
2828+ default = "adaptive";
2929+ example = "flat";
3030 description =
3131 ''
3232- Sets the pointer acceleration profile to the given profile. Permitted values are adaptive, flat.
3333- Not all devices support this option or all profiles. If a profile is unsupported, the default profile
3434- for this is used. For a description on the profiles and their behavior, see the libinput documentation.
3232+ Sets the pointer acceleration profile to the given profile.
3333+ Permitted values are adaptive, flat.
3434+ Not all devices support this option or all profiles.
3535+ If a profile is unsupported, the default profile for this is used.
3636+ <literal>flat</literal>: Pointer motion is accelerated by a constant
3737+ (device-specific) factor, depending on the current speed.
3838+ <literal>adaptive</literal>: Pointer acceleration depends on the input speed.
3939+ This is the default profile for most devices.
3540 '';
3636- };
3737-4141+ };
4242+3843 accelSpeed = mkOption {
3944 type = types.nullOr types.string;
4045 default = null;
···216221 Option "LeftHanded" "${xorgBool cfg.leftHanded}"
217222 Option "MiddleEmulation" "${xorgBool cfg.middleEmulation}"
218223 Option "NaturalScrolling" "${xorgBool cfg.naturalScrolling}"
219219- ${optionalString (cfg.scrollButton != null) ''Option "ScrollButton" "${cfg.scrollButton}"''}
224224+ ${optionalString (cfg.scrollButton != null) ''Option "ScrollButton" "${toString cfg.scrollButton}"''}
220225 Option "ScrollMethod" "${cfg.scrollMethod}"
221226 Option "HorizontalScrolling" "${xorgBool cfg.horizontalScrolling}"
222227 Option "SendEventsMode" "${cfg.sendEventsMode}"