25 lines
363 B
Nix
Executable File
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
|
|
];
|
|
};
|
|
};
|
|
})
|
|
];
|
|
}
|