hass stuff

This commit is contained in:
mjallen18
2025-03-11 13:26:56 -05:00
parent 9dc289eaee
commit fc4747f49c
5 changed files with 82 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
{ pkgs, ... }:
{
services.wyoming = {
faster-whisper.servers.hass-whisper = {
enable = true;
device = "cuda";
language = "en";
model = "distil-large-v3";
uri = "tcp://0.0.0.0:10300";
};
piper.servers.hass-piper = {
enable = true;
voice = "en-us-ryan-high";
uri = "tcp://0.0.0.0:10200";
};
};
}