Files
nix-config/modules/home/programs/calibre/default.nix
mjallen18 70002a19e2 hmm
2026-04-07 18:39:42 -05:00

25 lines
363 B
Nix
Executable File

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