summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2023-10-07 11:34:07 +0200
committerGitHub <noreply@github.com>2023-10-07 11:34:07 +0200
commit8d185b182636dbc7ca6da636e1543af3d5f90f22 (patch)
tree7e2a955d856b2ccd32f402bed7bafefa8e83062c /pkgs
parent6a46c0853d6f66cb5517427438aa8fd73684c55a (diff)
parent1b17ed591778ffc90e0ac07ddb338d5d34aed823 (diff)
downloadnixpkgs-8d185b182636dbc7ca6da636e1543af3d5f90f22.tar
nixpkgs-8d185b182636dbc7ca6da636e1543af3d5f90f22.tar.gz
nixpkgs-8d185b182636dbc7ca6da636e1543af3d5f90f22.tar.bz2
nixpkgs-8d185b182636dbc7ca6da636e1543af3d5f90f22.tar.lz
nixpkgs-8d185b182636dbc7ca6da636e1543af3d5f90f22.tar.xz
nixpkgs-8d185b182636dbc7ca6da636e1543af3d5f90f22.tar.zst
nixpkgs-8d185b182636dbc7ca6da636e1543af3d5f90f22.zip
Merge pull request #259534 from cafkafk/cafk-firefox-a11y
firefox: default to speech synthesis enabled
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/browsers/firefox/wrapper.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/browsers/firefox/wrapper.nix b/pkgs/applications/networking/browsers/firefox/wrapper.nix
index 123d597031c..6561e51d7d9 100644
--- a/pkgs/applications/networking/browsers/firefox/wrapper.nix
+++ b/pkgs/applications/networking/browsers/firefox/wrapper.nix
@@ -84,7 +84,7 @@ let
             ++ lib.optional sndioSupport sndio
             ++ lib.optional jackSupport libjack2
             ++ lib.optional smartcardSupport opensc
-            ++ lib.optional (cfg.speechSynthesisSupport or false) speechd
+            ++ lib.optional (cfg.speechSynthesisSupport or true) speechd
             ++ pkcs11Modules
             ++ gtk_modules;
       gtk_modules = [ libcanberra-gtk3 ];