My Nix Configuration
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

[firefox] disable speechd support

dish 3c5203ba 8eeb6126

+6 -1
+5 -1
nixosModules/homes/thehedgehog-zaphod/default.nix
··· 9 9 pkgs.fluffychat 10 10 pkgs.feishin 11 11 pkgs.turntable 12 - pkgs.glide-browser 12 + (pkgs.glide-browser-bin.overrideAttrs (old: { 13 + cfg = (old.cfg or { }) // { 14 + speechSynthesisSupport = false; 15 + }; 16 + })) 13 17 pkgs.xxd 14 18 pkgs.libqalculate 15 19 ];
+1
nixosModules/programs/firefox/default.nix
··· 20 20 smartcardSupport = true; 21 21 pipewireSupport = true; 22 22 ffmpegSupport = true; 23 + speechSynthesisSupport = false; 23 24 }; 24 25 policies = import ./policies.nix; 25 26 preferences = import ./extraPrefs.nix;