Files
nix-config/modules/home/programs/calibre/default.nix
2026-04-01 14:54:20 -05:00

25 lines
363 B
Nix

{
config,
lib,
pkgs,
namespace,
...
}:
{
imports = [
(lib.${namespace}.mkHomeModule {
inherit config;
domain = "programs";
name = "calibre";
moduleConfig = {
programs.calibre = {
enable = true;
plugins = with pkgs.${namespace}; [
dedrm
];
};
};
})
];
}