1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-05 04:43:28 +02:00
home-manager/tests/modules/programs/translate-shell/translate-shell.nix
2023-05-11 11:21:18 +02:00

28 lines
508 B
Nix

{ ... }:
{
programs.translate-shell = {
enable = true;
settings = {
verbose = true;
engine = "bing";
play = true;
hl = "en";
tl = [ "de" "fr" ];
};
};
test.stubs.translate-shell = { };
nmt.script = ''
assertFileContent home-files/.config/translate-shell/init.trans \
${builtins.toFile "translate-shell-expected-settings.trans" ''
{:engine "bing"
:hl "en"
:play true
:tl [ "de" "fr" ]
:verbose true
}''}
'';
}