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

16 lines
248 B
Nix
Raw Normal View History

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