nix-dotfiles/hmModules/apps/zathura/app.nix

14 lines
208 B
Nix
Raw Normal View History

{ config, lib, ... }:
2024-04-14 05:40:02 -07:00
{
options.zathura = {
enable = lib.mkEnableOption "Enables zathura";
};
config = lib.mkIf config.zathura.enable {
programs.zathura = {
enable = true;
};
};
}