# Document & image viewers — the "open a PDF / open a photo" half of a # complete workstation. zathura goes through its HM module (not a bare # package) because Stylix themes it via programs.zathura.options — the # reason it's a component toggle here rather than a template package # line. imv rides along: wayland-native, and an image viewer is a # borderless dark surface — nothing to theme. The heavier editors # (GIMP, Inkscape) stay template packages; mime.nix points the default # associations at these viewers. { config, lib, pkgs, ... }: lib.mkIf config.nomarchy.viewers.enable { programs.zathura.enable = lib.mkDefault true; home.packages = [ pkgs.imv ]; }