Calibre
From NixOS Wiki
This page is intended to explain how to run calibre
in nixos.
Connecting USB devices
To connect devices via USB, you might have to add the following to your configuration.nix
file:
/etc/nixos/configuration.nix
services.udisks2.enable = true;
.cbr and .cbz files
If you want to open .cbr and .cbz files, you need to add the following lines to your configuration.nix
file:
/etc/nixos/configuration.nix
environment.systemPackages = with pkgs; [
(calibre.override {
unrarSupport = true;
})
];