2024-11-16 21:15:01 -08:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
let
|
2024-11-16 23:29:38 -08:00
|
|
|
inherit (lib) mkEnableOption mkIf;
|
|
|
|
inherit (lib.marleyos) enabled;
|
2024-11-16 21:15:01 -08:00
|
|
|
|
2024-11-16 22:34:40 -08:00
|
|
|
cfg = config.marleyos.programs.zathura;
|
|
|
|
inherit (config.marleyos.theme) colors;
|
2024-11-16 21:15:01 -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;
|
|
|
|
|
2024-11-16 22:44:45 -08:00
|
|
|
rose-pine = mkIf colors.isRosePine enabled;
|
2024-11-16 21:15:01 -08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|