Bruno BELANYI
ac725bd5e4
Ideally I will extend this module to handle the plugin (and dependencies) natively.
16 lines
329 B
Nix
16 lines
329 B
Nix
{ config, lib, pkgs, ... }:
|
|
let
|
|
cfg = config.my.home.calibre;
|
|
in
|
|
{
|
|
options.my.home.calibre = with lib; {
|
|
enable = mkEnableOption "calibre configuration";
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
home.packages = with pkgs; [
|
|
calibre # NOTE: relies on my overlay to add necessary plug-in dependencies
|
|
];
|
|
};
|
|
}
|