1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 09:28:32 +02:00
home-manager/modules/programs/translate-shell.nix

53 lines
1.2 KiB
Nix
Raw Normal View History

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 {
meta.maintainers = [ ];
2023-05-11 11:21:18 +02:00
options.programs.translate-shell = {
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" ];
};
description = ''
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}}"; };
};
}