mio-ops/profiles/ebooks.nix

16 lines
308 B
Nix
Raw Normal View History

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