2024-11-23 22:11:09 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
2025-01-14 05:05:10 +00:00
|
|
|
}: let
|
2024-11-23 22:11:09 +00:00
|
|
|
cfg = config.marleyos.programs.calibre;
|
2025-01-14 05:05:10 +00:00
|
|
|
in {
|
|
|
|
options.marleyos.programs.calibre.enable = lib.mkEnableOption "calibre";
|
2024-11-23 22:11:09 +00:00
|
|
|
|
2025-01-14 05:05:10 +00:00
|
|
|
config = lib.mkIf cfg.enable {
|
2024-11-23 22:11:09 +00:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
calibre
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|