mio-ops/profiles/ebooks.nix

18 lines
314 B
Nix
Raw Normal View History

2021-07-28 00:27:04 +00:00
# ebook reading requirements
{ config, pkgs, ... }:
{
environment.variables = {
FOLIATE_TTS_LANG="en-gb";
};
environment.systemPackages = with pkgs; [
2021-09-28 01:26:46 +00:00
#python39Packages.gtts # Speech synthesizer, required for text to speech.
2021-07-28 00:27:04 +00:00
foliate # A simple and modern GTK eBook reader
vlc
];
}