mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-10 20:20:41 +03:00
20 lines
208 B
Nix
20 lines
208 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
xlib,
|
|
...
|
|
}:
|
|
{
|
|
services.tts.servers = {
|
|
russian = {
|
|
enable = true;
|
|
port = 5301;
|
|
};
|
|
english = {
|
|
#enable = false;
|
|
port = 5300;
|
|
};
|
|
};
|
|
}
|