2024-11-16 21:15:01 -08:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
...
|
2025-01-12 15:29:50 -08:00
|
|
|
}: let
|
2024-11-16 23:29:38 -08:00
|
|
|
inherit (lib) mkEnableOption mkIf;
|
2024-11-16 21:15:01 -08:00
|
|
|
|
2024-11-16 22:34:40 -08:00
|
|
|
cfg = config.marleyos.programs.zathura;
|
2025-01-12 15:29:50 -08:00
|
|
|
in {
|
2024-11-16 23:29:38 -08:00
|
|
|
options.marleyos.programs.zathura.enable = mkEnableOption "zathura";
|
2024-11-16 21:15:01 -08:00
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
programs.zathura = {
|
|
|
|
enable = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|