This commit is contained in:
2026-04-01 14:54:20 -05:00
parent 03f6b730cf
commit e4daf12f39
3 changed files with 70 additions and 0 deletions

View File

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