2023-05-11 11:21:18 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.translate-shell;
|
|
|
|
|
|
|
|
mkKeyValue = key: value:
|
|
|
|
let
|
|
|
|
formatValue = v:
|
|
|
|
if isBool v then
|
|
|
|
(if v then "true" else "false")
|
|
|
|
else if isString v then
|
|
|
|
''"${v}"''
|
|
|
|
else if isList v then
|
|
|
|
"[ ${concatStringsSep " " (map formatValue v)} ]"
|
|
|
|
else
|
|
|
|
toString v;
|
|
|
|
in ":${key} ${formatValue value}";
|
|
|
|
|
|
|
|
toKeyValue = generators.toKeyValue { inherit mkKeyValue; };
|
|
|
|
|
|
|
|
in {
|
2023-06-22 10:16:28 +02:00
|
|
|
meta.maintainers = [ ];
|
2023-05-11 11:21:18 +02:00
|
|
|
|
|
|
|
options.programs.translate-shell = {
|
2023-07-02 01:45:18 +02:00
|
|
|
enable = mkEnableOption "translate-shell";
|
2023-05-11 11:21:18 +02:00
|
|
|
|
|
|
|
settings = mkOption {
|
|
|
|
type = with types; attrsOf (oneOf [ bool str (listOf str) ]);
|
|
|
|
default = { };
|
|
|
|
example = {
|
|
|
|
verbose = true;
|
|
|
|
hl = "en";
|
|
|
|
tl = [ "es" "fr" ];
|
|
|
|
};
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2023-07-01 01:30:13 +02:00
|
|
|
Options to add to {file}`$XDG_CONFIG_HOME/translate-shell/init.trans` file.
|
|
|
|
See <https://github.com/soimort/translate-shell/wiki/Configuration>
|
2023-05-11 11:21:18 +02:00
|
|
|
for options.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
home.packages = [ pkgs.translate-shell ];
|
|
|
|
|
|
|
|
xdg.configFile."translate-shell/init.trans" =
|
|
|
|
mkIf (cfg.settings != { }) { text = "{${toKeyValue cfg.settings}}"; };
|
|
|
|
};
|
|
|
|
}
|