[NixOS] Add tts via coqui

This commit is contained in:
2025-02-07 01:24:27 -07:00
parent 107d3cfdb3
commit b189e1fa3e
5 changed files with 12 additions and 2 deletions

8
nixos/tts.nix Normal file
View File

@@ -0,0 +1,8 @@
{ config, makeEnable, ... }:
makeEnable config "myModules.tts" false {
services.tts.servers.coqui = {
enable = true;
useCuda = false;
port = 11115;
};
}