2024-11-16 21:15:01 -08:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
let
|
|
|
|
inherit (lib) mkIf enabled;
|
2024-11-16 22:34:40 -08:00
|
|
|
inherit (lib.marleyos) mkEnableModule;
|
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
|
|
|
|
{
|
|
|
|
options = mkEnableModule "programs.zathura";
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
programs.zathura = {
|
|
|
|
enable = true;
|
|
|
|
|
2024-11-16 22:34:40 -08:00
|
|
|
"${colors.base}" = enabled;
|
2024-11-16 21:15:01 -08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|