mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-15 07:27:48 -05:00
gnu: linux-libre: Enable accessibility features.
* gnu/packages/linux.scm (%default-extra-linux-options): Enable speakup and Braille console options by default. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
parent
f2af4ca71f
commit
a86979b41a
1 changed files with 6 additions and 0 deletions
|
@ -65,6 +65,7 @@
|
|||
;;; Copyright © 2022 Rene Saavedra <nanuui@protonmail.com>
|
||||
;;; Copyright © 2022 muradm <mail@muradm.net>
|
||||
;;; Copyright © 2022 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
|
||||
;;; Copyright © 2022 Hunter Jozwiak <hunter.t.joz@gmail.com>
|
||||
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
|
@ -700,6 +701,11 @@ (define %default-extra-linux-options
|
|||
("CONFIG_ZSWAP" . #t)
|
||||
("CONFIG_ZSMALLOC" . #t)
|
||||
("CONFIG_ZRAM" . m)
|
||||
;; Accessibility support.
|
||||
("CONFIG_ACCESSIBILITY" . #t)
|
||||
("CONFIG_A11Y_BRAILLE_CONSOLE" . #t)
|
||||
("CONFIG_SPEAKUP" . m)
|
||||
("CONFIG_SPEAKUP_SYNTH_SOFT" . m)
|
||||
;; Modules required for initrd:
|
||||
("CONFIG_NET_9P" . m)
|
||||
("CONFIG_NET_9P_VIRTIO" . m)
|
||||
|
|
Loading…
Reference in a new issue