summaryrefslogtreecommitdiff
path: root/hm/soft/sioyek.nix
blob: 6b2650d52219714ca9a03b43d2e443757cb4b647 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ config, lib, ... }:
let
  cfg = config.hm.soft.sioyek;
in
{
  options.hm.soft.sioyek.enable = lib.mkEnableOption "enables sioyek pdf reader";
  config = lib.mkIf cfg.enable {
    programs.sioyek = {
      enable = true;
      config = {

      };
      bindings = {

      };
    };
  };
}