15 lines
309 B
Nix
15 lines
309 B
Nix
# ebook reading requirements
|
|
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
environment.variables = {FOLIATE_TTS_LANG = "en-gb";};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
#python311Packages.gtts # Speech synthesizer, required for text to speech.
|
|
foliate # A simple and modern GTK eBook reader
|
|
vlc
|
|
];
|
|
}
|