summaryrefslogtreecommitdiffstats
path: root/modules/hm/sils/zathura.nix
blob: 22529a36e68d89c7ed3eab37b000b00125f93230 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  config,
  lib,
  ...
}: let
  cfg = config.sils.zathura;
in {
  options.sils.zathura.enable = lib.mkEnableOption "zathura";
  config = lib.mkIf cfg.enable {
    programs.zathura = {
      enable = true;
    };
  };
}