marleyos/modules/home/programs/zathura/default.nix

18 lines
278 B
Nix
Raw Normal View History

2024-11-16 21:15:01 -08:00
{
lib,
config,
...
}: let
inherit (lib) mkEnableOption mkIf;
2024-11-16 21:15:01 -08:00
cfg = config.marleyos.programs.zathura;
in {
options.marleyos.programs.zathura.enable = mkEnableOption "zathura";
2024-11-16 21:15:01 -08:00
config = mkIf cfg.enable {
programs.zathura = {
enable = true;
};
};
}