diff options
Diffstat (limited to 'config.scm')
-rw-r--r-- | config.scm | 19 |
1 files changed, 13 insertions, 6 deletions
@@ -1,6 +1,7 @@ ;; This is an operating system configuration generated ;; by the graphical installer. (use-modules (gnu) + (srfi srfi-1) (nongnu packages linux) (nongnu system linux-initrd)) (use-service-modules desktop networking ssh xorg) @@ -63,9 +64,15 @@ "bluez")) %base-packages)) - (services (append (list (service gnome-desktop-service-type) - (bluetooth-service #:auto-enable? #t) - (set-xorg-configuration - (xorg-configuration - (keyboard-layout keyboard-layout)))) - %desktop-services))) + (services (append (list (service gnome-desktop-service-type) + (bluetooth-service #:auto-enable? #t) + (set-xorg-configuration (xorg-configuration + (keyboard-layout + keyboard-layout)))) + ; Removes ModemManager because it interferes with USB + ; development. If using a 3/4G modem or something we have + ; to activate it. + (remove (lambda (x) (eqv? (service-type-name + (service-kind x)) + 'modem-manager)) + %desktop-services)))) |