nixpkgs/home/services/libretranslate.nix
Daniel Siepmann 791eca8ee8
Add local libretranslate
Very basic via systemd, no module found or created.
2023-10-10 08:47:03 +02:00

19 lines
315 B
Nix

{ pkgs }:
{
Unit = {
Description = "LibreTrnalsate";
PartOf = "graphical-session.target";
};
Service = {
ExecStart = "${pkgs.libretranslate}/bin/libretranslate --load-only de,en --disable-files-translation";
};
Install = {
WantedBy = [
"hm-graphical-session.target"
];
};
}