Calibre: Difference between revisions
copy from old wiki |
m attached to category:Applications. Introduction sentence added. |
||
Line 1: | Line 1: | ||
Calibre is program to view, edit, convert and print ebooks. | |||
This page is intended to explain how to run <code>calibre</code> in nixos. | This page is intended to explain how to run <code>calibre</code> in nixos. | ||
Line 22: | Line 24: | ||
</syntaxHighlight> | </syntaxHighlight> | ||
}} | }} | ||
[[Category: Applications]] |
Latest revision as of 21:24, 18 April 2024
Calibre is program to view, edit, convert and print ebooks.
This page is intended to explain how to run calibre
in nixos.
.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;
})
]