Remove linuxwacom: it is not compatible with new xserver
svn path=/nixos/trunk/; revision=21015
This commit is contained in:
parent
eea1660532
commit
9cce36182d
@ -120,7 +120,6 @@
|
|||||||
./services/x11/display-managers/kdm.nix
|
./services/x11/display-managers/kdm.nix
|
||||||
./services/x11/display-managers/slim.nix
|
./services/x11/display-managers/slim.nix
|
||||||
./services/x11/hardware/synaptics.nix
|
./services/x11/hardware/synaptics.nix
|
||||||
./services/x11/hardware/wacom.nix
|
|
||||||
./services/x11/window-managers/compiz.nix
|
./services/x11/window-managers/compiz.nix
|
||||||
./services/x11/window-managers/default.nix
|
./services/x11/window-managers/default.nix
|
||||||
./services/x11/window-managers/icewm.nix
|
./services/x11/window-managers/icewm.nix
|
||||||
|
@ -1,88 +0,0 @@
|
|||||||
{ config, pkgs, ... }:
|
|
||||||
|
|
||||||
with pkgs.lib;
|
|
||||||
|
|
||||||
let
|
|
||||||
|
|
||||||
cfg = config.services.xserver.wacom;
|
|
||||||
|
|
||||||
in
|
|
||||||
|
|
||||||
{
|
|
||||||
|
|
||||||
options = {
|
|
||||||
|
|
||||||
services.xserver.wacom = {
|
|
||||||
|
|
||||||
enable = mkOption {
|
|
||||||
default = false;
|
|
||||||
description = "Whether to enable the Wacom touchscreen/digitizer.";
|
|
||||||
};
|
|
||||||
|
|
||||||
device = mkOption {
|
|
||||||
default = "/dev/ttyS0";
|
|
||||||
description = "Device to use.";
|
|
||||||
};
|
|
||||||
|
|
||||||
forceDeviceType = mkOption {
|
|
||||||
default = "ISDV4";
|
|
||||||
example = null;
|
|
||||||
description = "Some models (think touchscreen) require the device type to be specified.";
|
|
||||||
};
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
|
|
||||||
services.xserver.modules = [ pkgs.linuxwacom ];
|
|
||||||
|
|
||||||
services.udev.packages = [ pkgs.linuxwacom ];
|
|
||||||
|
|
||||||
services.xserver.serverLayoutSection =
|
|
||||||
''
|
|
||||||
InputDevice "Wacom_stylus"
|
|
||||||
InputDevice "Wacom_cursor"
|
|
||||||
InputDevice "Wacom_eraser"
|
|
||||||
'';
|
|
||||||
|
|
||||||
services.xserver.config =
|
|
||||||
''
|
|
||||||
Section "InputDevice"
|
|
||||||
Driver "wacom"
|
|
||||||
Identifier "Wacom_stylus"
|
|
||||||
Option "Device" "${cfg.device}"
|
|
||||||
Option "Type" "stylus"
|
|
||||||
${optionalString (cfg.forceDeviceType != null) ''
|
|
||||||
Option "ForceDevice" "${cfg.forceDeviceType}"
|
|
||||||
''}
|
|
||||||
Option "Button2" "3"
|
|
||||||
EndSection
|
|
||||||
|
|
||||||
Section "InputDevice"
|
|
||||||
Driver "wacom"
|
|
||||||
Identifier "Wacom_eraser"
|
|
||||||
Option "Device" "${cfg.device}"
|
|
||||||
Option "Type" "eraser"
|
|
||||||
${optionalString (cfg.forceDeviceType != null) ''
|
|
||||||
Option "ForceDevice" "${cfg.forceDeviceType}"
|
|
||||||
''}
|
|
||||||
Option "Button1" "2"
|
|
||||||
EndSection
|
|
||||||
|
|
||||||
Section "InputDevice"
|
|
||||||
Driver "wacom"
|
|
||||||
Identifier "Wacom_cursor"
|
|
||||||
Option "Device" "${cfg.device}"
|
|
||||||
Option "Type" "cursor"
|
|
||||||
${optionalString (cfg.forceDeviceType != null) ''
|
|
||||||
Option "ForceDevice" "${cfg.forceDeviceType}"
|
|
||||||
''}
|
|
||||||
EndSection
|
|
||||||
'';
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
@ -155,7 +155,7 @@ in
|
|||||||
|
|
||||||
modules = mkOption {
|
modules = mkOption {
|
||||||
default = [];
|
default = [];
|
||||||
example = [ pkgs.linuxwacom ];
|
example = [ pkgs.synaptics ];
|
||||||
description = "Packages to be added to the module search path of the X server.";
|
description = "Packages to be added to the module search path of the X server.";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user