2022-04-17 23:07:55 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2022-10-01 16:42:51 +02:00
|
|
|
|
2022-04-17 23:07:55 +02:00
|
|
|
with lib;
|
2022-10-01 16:42:51 +02:00
|
|
|
|
2022-04-17 23:07:55 +02:00
|
|
|
let
|
2022-10-01 16:42:51 +02:00
|
|
|
|
2022-04-17 23:07:55 +02:00
|
|
|
cfg = config.programs.sioyek;
|
|
|
|
|
2022-10-01 16:42:51 +02:00
|
|
|
renderConfig = generators.toKeyValue {
|
|
|
|
mkKeyValue = key: value: "${key} ${value}";
|
|
|
|
listsAsDuplicateKeys = true;
|
|
|
|
};
|
|
|
|
|
2022-04-17 23:07:55 +02:00
|
|
|
in {
|
|
|
|
options = {
|
|
|
|
programs.sioyek = {
|
2023-07-02 01:45:18 +02:00
|
|
|
enable = mkEnableOption
|
|
|
|
"Sioyek, a PDF viewer designed for reading research papers and technical books";
|
2022-04-17 23:07:55 +02:00
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
default = pkgs.sioyek;
|
|
|
|
defaultText = literalExpression "pkgs.sioyek";
|
|
|
|
type = types.package;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = "Package providing the sioyek binary";
|
2022-04-17 23:07:55 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
bindings = mkOption {
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2022-04-17 23:07:55 +02:00
|
|
|
Input configuration written to
|
2023-07-01 01:30:13 +02:00
|
|
|
{file}`$XDG_CONFIG_HOME/sioyek/keys_user.config`.
|
|
|
|
See <https://github.com/ahrm/sioyek/blob/main/pdf_viewer/keys.config>.
|
|
|
|
|
2022-10-01 16:42:51 +02:00
|
|
|
Each attribute could also accept a list of strings to set multiple
|
|
|
|
bindings of the same command.
|
2022-04-17 23:07:55 +02:00
|
|
|
'';
|
2022-10-01 16:42:51 +02:00
|
|
|
type = with types; attrsOf (either str (listOf str));
|
2022-04-17 23:07:55 +02:00
|
|
|
default = { };
|
|
|
|
example = literalExpression ''
|
|
|
|
{
|
|
|
|
"move_up" = "k";
|
|
|
|
"move_down" = "j";
|
|
|
|
"move_left" = "h";
|
|
|
|
"move_right" = "l";
|
2022-10-01 16:42:51 +02:00
|
|
|
"screen_down" = [ "d" "<C-d>" ];
|
|
|
|
"screen_up" = [ "u" "<C-u>" ];
|
2022-04-17 23:07:55 +02:00
|
|
|
}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkOption {
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2022-04-17 23:07:55 +02:00
|
|
|
Input configuration written to
|
2023-07-01 01:30:13 +02:00
|
|
|
{file}`$XDG_CONFIG_HOME/sioyek/prefs_user.config`.
|
|
|
|
See <https://github.com/ahrm/sioyek/blob/main/pdf_viewer/prefs.config>.
|
2022-04-17 23:07:55 +02:00
|
|
|
'';
|
|
|
|
type = types.attrsOf types.str;
|
|
|
|
default = { };
|
|
|
|
example = literalExpression ''
|
|
|
|
{
|
|
|
|
"background_color" = "1.0 1.0 1.0";
|
|
|
|
"text_highlight_color" = "1.0 0.0 0.0";
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable (mkMerge [
|
|
|
|
{ home.packages = [ cfg.package ]; }
|
|
|
|
(mkIf (cfg.config != { }) {
|
2022-10-01 16:42:51 +02:00
|
|
|
xdg.configFile."sioyek/prefs_user.config".text = renderConfig cfg.config;
|
2022-04-17 23:07:55 +02:00
|
|
|
})
|
|
|
|
(mkIf (cfg.bindings != { }) {
|
2022-10-01 16:42:51 +02:00
|
|
|
xdg.configFile."sioyek/keys_user.config".text = renderConfig cfg.bindings;
|
2022-04-17 23:07:55 +02:00
|
|
|
})
|
|
|
|
]);
|
|
|
|
|
|
|
|
meta.maintainers = [ hm.maintainers.podocarp ];
|
|
|
|
}
|