1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-09 10:31:06 +01:00

calibre: add module

This commit is contained in:
Aguirre Matteo 2025-12-03 10:14:16 -03:00 committed by Austin Horstman
parent df7bac2b2b
commit 24cc5c080c
6 changed files with 60 additions and 0 deletions

View file

@ -0,0 +1,44 @@
{
lib,
pkgs,
config,
...
}:
let
inherit (lib)
types
mkIf
mkEnableOption
mkPackageOption
mkOption
;
cfg = config.programs.calibre;
in
{
meta.maintainers = with lib.hm.maintainers; [ aguirre-matteo ];
options.programs.calibre = {
enable = mkEnableOption "calibre";
package = mkPackageOption pkgs "calibre" { nullable = true; };
plugins = mkOption {
type = with types; listOf path;
default = [ ];
description = "List of plugins to install for calibre";
};
};
config = mkIf cfg.enable {
home.packages = mkIf (cfg.package != null) [ cfg.package ];
xdg.configFile = mkIf (cfg.plugins != [ ]) (
let
symlinkedPlugins = pkgs.symlinkJoin {
name = "calibre-plugins";
paths = cfg.plugins;
};
in
lib.mapAttrs' (
k: _: lib.nameValuePair "calibre/plugins/${k}" { source = (symlinkedPlugins + "/${k}"); }
) (builtins.readDir symlinkedPlugins)
);
};
}

View file

@ -27,6 +27,7 @@ let
"broot"
"browserpass"
"btop"
"calibre"
"carapace"
"cava"
"claude-code"

View file

@ -0,0 +1 @@
{ calibre-settings = ./settings.nix; }

View file

@ -0,0 +1,14 @@
{
programs.calibre = {
enable = true;
plugins = [
./plugins/a
./plugins/b
];
};
nmt.script = ''
assertFileExists home-files/.config/calibre/plugins/a.zip
assertFileExists home-files/.config/calibre/plugins/b.zip
'';
}