summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEkaitz Zarraga <ekaitz@elenq.tech>2021-01-11 14:25:50 +0100
committerEkaitz Zarraga <ekaitz@elenq.tech>2021-01-11 14:25:50 +0100
commit180888317f6cffcd515a760c4d6f73b196a89e14 (patch)
tree297f4291e6f3ac9f1f7273bf6d5d9facd80cf737
parentb8d449295c4d27e7ce041ac37591b2afe970bf24 (diff)
add wacom Xorg module
-rw-r--r--config.scm12
1 files changed, 8 insertions, 4 deletions
diff --git a/config.scm b/config.scm
index c6d6436..d969c8a 100644
--- a/config.scm
+++ b/config.scm
@@ -3,6 +3,7 @@
(use-modules (gnu)
(srfi srfi-1)
((gnu packages linux) #:prefix gnu-linux:)
+ (gnu packages xdisorg)
(tuxedo-keyboard)
(nongnu packages linux)
(nongnu system linux-initrd))
@@ -77,15 +78,18 @@
"tree"
"wget"
"tcpdump"
- "openssh"))
+ "openssh"
+ "xf86-input-wacom"))
%base-packages))
(services (cons* (udev-rules-service 'light gnu-linux:light)
(service gnome-desktop-service-type)
(bluetooth-service #:auto-enable? #t)
- (set-xorg-configuration (xorg-configuration
- (keyboard-layout
- keyboard-layout)))
+ (set-xorg-configuration
+ (xorg-configuration
+ (keyboard-layout keyboard-layout)
+ (modules (append %default-xorg-modules
+ (list xf86-input-wacom)))))
; Removes ModemManager because it interferes with USB
; development. If using a 3/4G modem or something we have
; to activate it.