services/languagetool: init

This commit is contained in:
Kevin Baensch 2025-07-25 12:15:46 +02:00
parent 7a6ace2ef0
commit 97a114f637
Signed by: derped
SSH key fingerprint: SHA256:8/FSu/lmp3c1Z17Gml06JRIEHtDjhwdd7g6pBaHQWBc

15
services/languagetool.nix Normal file
View file

@ -0,0 +1,15 @@
{
config,
lib,
...
}:
lib.mkIf (lib.elem "languagetool" config.machine.services) {
services.languagetool = {
enable = true;
allowOrigin = "*";
jvmOptions = [
"-Xmx512m"
];
};
}