diff options
-rw-r--r-- | config.scm | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -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. |