feat: a lot of stuff
This commit is contained in:
parent
9806ee2a4e
commit
bc60f155aa
19 changed files with 250 additions and 20 deletions
17
modules/tts.nix
Normal file
17
modules/tts.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ lib, config, ... }: lib.mkIf config.bchmnn.ai.enable {
|
||||
|
||||
virtualisation = {
|
||||
oci-containers = {
|
||||
containers = {
|
||||
coqui-ai-tts = {
|
||||
image = "ghcr.io/coqui-ai/tts:latest";
|
||||
autoStart = true;
|
||||
ports = ["127.0.0.1:5002:5002"];
|
||||
entrypoint = "/bin/bash";
|
||||
cmd = [];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue