marleyos/modules/home/programs/calibre/default.nix

17 lines
257 B
Nix
Raw Normal View History

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