summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorChristina Sørensen <christina@cafkafk.com>2023-10-07 09:04:11 +0200
committerChristina Sørensen <christina@cafkafk.com>2023-10-07 09:04:11 +0200
commit1b17ed591778ffc90e0ac07ddb338d5d34aed823 (patch)
tree5ff92951fd957f282237b089675bfeff68606eff /pkgs
parent2de1be5b51c3d6fa833f1c1f222dc867dd054b31 (diff)
downloadnixpkgs-1b17ed591778ffc90e0ac07ddb338d5d34aed823.tar
nixpkgs-1b17ed591778ffc90e0ac07ddb338d5d34aed823.tar.gz
nixpkgs-1b17ed591778ffc90e0ac07ddb338d5d34aed823.tar.bz2
nixpkgs-1b17ed591778ffc90e0ac07ddb338d5d34aed823.tar.lz
nixpkgs-1b17ed591778ffc90e0ac07ddb338d5d34aed823.tar.xz
nixpkgs-1b17ed591778ffc90e0ac07ddb338d5d34aed823.tar.zst
nixpkgs-1b17ed591778ffc90e0ac07ddb338d5d34aed823.zip
firefox: default to speech synthesis enabled
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
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 ];