services.marytts.userDictionaries

NixOS option

Paths to the user dictionary files for MaryTTS.

type: list of absolute path
Default
[ ]
Example
[
  (pkgs.writeTextFile {
    name = "userdict-en_US";
    destination = "/userdict-en_US.txt";
    text = ''
      Nixpkgs | n I k s - ' p { - k @ - dZ @ s
    '';
  })
]
declared in: nixos/modules/services/audio/marytts.nixView source on NixOS/nixpkgs →