summaryrefslogtreecommitdiff
path: root/README.org
diff options
context:
space:
mode:
Diffstat (limited to 'README.org')
-rw-r--r--README.org10
1 files changed, 3 insertions, 7 deletions
diff --git a/README.org b/README.org
index 6760109..2cab4ef 100644
--- a/README.org
+++ b/README.org
@@ -133,20 +133,16 @@ addition to firmware. To use such hardware you will also need to add a service
to load that module on boot, and blacklist conflicting kernel modules:
#+BEGIN_SRC scheme
- (use-modules (nongnu packages linux)
- (nongnu services kernel-modules))
+ (use-modules (nongnu packages linux))
(operating-system
(kernel linux)
;; Blacklist conflicting kernel modules.
(kernel-arguments '("modprobe.blacklist=b43,b43legacy,ssb,bcm43xx,brcm80211,brcmfmac,brcmsmac,bcma"))
+ (kernel-loadable-modules (list broadcom-sta))
(firmware (cons* broadcom-bt-firmware
%base-firmware))
- ...
- (services
- (cons* (load-broadcom-sta-service)
- ...
- %desktop-services)))
+ ...)
#+END_SRC
* Contributing