feature(calibre): add calibre ebook management

This commit is contained in:
2026-04-09 20:11:19 +02:00
parent 9f0ee40cc3
commit e0e282a547
2 changed files with 9 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
{ config, lib, pkgs, ... }:
{
# install calibre for ebook management and kobo syncing
environment.systemPackages = with pkgs; [
calibre
];
}