mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
nixos/tts: fix error messages read before text
with a config like this : ``` services.tts = { servers = { english = { enable = true; port = 5300; model = "tts_models/en/ljspeech/vits" }; }; }; ``` You the WAVs tts creates contain an error message which will be read to you before the text you typed in will be read to you. This patch fixes that.
This commit is contained in:
parent
e11ab30361
commit
7f2b869560
@ -134,6 +134,7 @@ in
|
||||
ProtectProc = "invisible";
|
||||
ProcSubset = "pid";
|
||||
RestrictAddressFamilies = [
|
||||
"AF_UNIX"
|
||||
"AF_INET"
|
||||
"AF_INET6"
|
||||
];
|
||||
|
Loading…
Reference in New Issue
Block a user