about summary refs log tree commit diff stats
path: root/modules/by-name/lf/lf/ctpv/prev/text/html/default.nix
blob: 2a7a9a9f1e48a8e368a33e119469a4201b505061 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{pkgs, ...}: {
  # TODO: I might want to use lynx/w3m instead <2024-11-24>
  soispha.programs.lf.ctpv.previewers = {
    elinks = {
      previewer = ./elinks.sh;
      priority = 1;
      matches.mime = ["text/html"];
      dependencies = [
        pkgs.elinks
      ];
    };
  };
}