xserver.wacom: update xorg.conf.d name after upstream change of the number

Changed files
+2 -2
nixos
modules
services
x11
hardware
+2 -2
nixos/modules/services/x11/hardware/wacom.nix
···
which will make Xorg reconfigure the device ?
If you're not satisfied by the default behaviour you can override
-
<option>environment.etc."X11/xorg.conf.d/50-wacom.conf"</option> in
configuration.nix easily.
'';
};
···
services.udev.packages = [ pkgs.xf86_input_wacom ];
-
environment.etc."X11/xorg.conf.d/50-wacom.conf".source = "${pkgs.xf86_input_wacom}/share/X11/xorg.conf.d/50-wacom.conf";
};
···
which will make Xorg reconfigure the device ?
If you're not satisfied by the default behaviour you can override
+
<option>environment.etc."X11/xorg.conf.d/70-wacom.conf"</option> in
configuration.nix easily.
'';
};
···
services.udev.packages = [ pkgs.xf86_input_wacom ];
+
environment.etc."X11/xorg.conf.d/70-wacom.conf".source = "${pkgs.xf86_input_wacom}/share/X11/xorg.conf.d/70-wacom.conf";
};