Discord: Difference between revisions
imported>Wolf2482-1639 Tell what to do if the setting.json file doesn't already exit |
imported>MathiasSven m Add TTS section https://github.com/NixOS/nixpkgs/pull/224565 |
||
Line 128: | Line 128: | ||
=== Krisp noise suppression === | === Krisp noise suppression === | ||
The Krisp noise suppression option will not work on NixOS because the Discord binary is patched before installation, and there is a DRM-style integrity check in the Krisp binary which prevents Krisp from working if the Discord binary is modified. See https://github.com/NixOS/nixpkgs/issues/195512 for details. | The Krisp noise suppression option will not work on NixOS because the Discord binary is patched before installation, and there is a DRM-style integrity check in the Krisp binary which prevents Krisp from working if the Discord binary is modified. See https://github.com/NixOS/nixpkgs/issues/195512 for details. | ||
=== Text-to-Speech === | |||
TTS is disabled by default, you may enable it via an overlay | |||
<syntaxhighlight lang="nix"> | |||
nixpkgs.overlays = | |||
let | |||
myOverlay = self: super: { | |||
discord = super.discord.override { withTTS = true; }; | |||
}; | |||
in | |||
[ myOverlay ]; | |||
</syntaxhighlight> | |||
== Links == | == Links == |