feat(home): Calibre

This commit is contained in:
punkfairie 2024-11-23 14:11:09 -08:00
parent 4efc63bf98
commit 7b57e86d34
Signed by: punkfairie
GPG key ID: A509E8F77FB9D696
2 changed files with 21 additions and 0 deletions

View file

@ -36,6 +36,7 @@ in
amfora = enabled; amfora = enabled;
bat = enabled; bat = enabled;
btop = enabled; btop = enabled;
calibre = enabled;
cava = enabled; cava = enabled;
cheat = enabled; cheat = enabled;
curl = enabled; curl = enabled;

View file

@ -0,0 +1,20 @@
{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkEnableOption mkIf;
cfg = config.marleyos.programs.calibre;
in
{
options.marleyos.programs.calibre.enable = mkEnableOption "calibre";
config = mkIf cfg.enable {
home.packages = with pkgs; [
calibre
];
};
}